0
bins = [0,1,10,20,30,40,50,75,100]
plt.figure(figsize=(15,15))
plt.hist(df.v1, bins = bins)
我的問題是因爲它們出現在圖中的bin寬度正比於它們在bins
範圍。不過,我希望所有箱子都具有相同的寬度。
bins = [0,1,10,20,30,40,50,75,100]
plt.figure(figsize=(15,15))
plt.hist(df.v1, bins = bins)
我的問題是因爲它們出現在圖中的bin寬度正比於它們在bins
範圍。不過,我希望所有箱子都具有相同的寬度。
我不知道如何理解結果,但可以使用numpy.histogram
來計算條形的高度,然後將這些直接繪製到任意的x軸上。
x = np.random.normal(loc=50, scale=200, size=(2000,))
bins = [0,1,10,20,30,40,50,75,100]
fig = plt.figure()
ax = fig.add_subplot(211)
ax.hist(x, bins=bins, edgecolor='k')
ax = fig.add_subplot(212)
h,e = np.histogram(x, bins=bins)
ax.bar(range(len(bins)-1),h, width=1, edgecolor='k')