[Jupyter][Python] matplotlib의 hist로 x축의 눈금과 막대의 중심선의 어긋남을 고친다(1씩 카운트하는 경우용)
2745 단어 파이썬matplotlib
matplotlib.pyplot
의 hist
로 히스토그램을 그렸을 때, x축의 눈금과 막대의 중심선의 어긋남을 range
를 지정하는 것으로 수정합니다. 다만 아래의 코드는 1 단위로 카운트하는 경우의 range
입니다.import pandas as pd
import matplotlib.pyplot as plt
s = pd.Series([1,2,2,4,4,4,4])
bins = (s.max()-s.min()+1)
# 何もしない場合
plt.hist(s, bins=bins)
plt.show()
# 修正した場合
plt.hist(s, bins=bins, range=(s.min()-.5, s.max()+.5))
plt.show()
Reference
이 문제에 관하여([Jupyter][Python] matplotlib의 hist로 x축의 눈금과 막대의 중심선의 어긋남을 고친다(1씩 카운트하는 경우용)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Masahiro_T/items/5758284cdb5670e6c268텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)