[Jupyter][Python] matplotlib의 hist로 x축의 눈금과 막대의 중심선의 어긋남을 고친다(1씩 카운트하는 경우용)

2745 단어 파이썬matplotlib
matplotlib.pyplothist 로 히스토그램을 그렸을 때, 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()

좋은 웹페이지 즐겨찾기