x轴范围内的条形图

时间:2019-06-13 15:22:08

标签: python matplotlib

我有很多这样的不同年份的行:

1926
2019
1783
1239
2015
...

我想将几个分类归入x轴,而y轴代表该组中的年数。所需的输出:Output

q1 = np.percentile(foundation_year_cleaned,25)
q3 = np.percentile(foundation_year_cleaned, 75)
IQR = q3-q1
wid = 2 * IQR / (len(foundation_year_cleaned) ** (1. / 3))
bins = np.arange(np.amin(foundation_year_cleaned),np.amax(foundation_year_cleaned),wid)
figure(num=None, figsize=(14, 6), dpi=80, facecolor='w', edgecolor='k')
plt.grid(linestyle='-', linewidth='0.3', color='gray')
histo = plt.hist(foundation_year_cleaned,bins)

我的代码到现在为止,但是它无法完成我想要获得的内容,并且不确定如何更改它。预先谢谢你!

0 个答案:

没有答案