我有很多这样的不同年份的行:
1926
2019
1783
1239
2015
...
我想将几个分类归入x轴,而y轴代表该组中的年数。所需的输出:
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)
我的代码到现在为止,但是它无法完成我想要获得的内容,并且不确定如何更改它。预先谢谢你!