如何在一个国家是bin的地方绘制直方图

时间:2019-03-30 06:10:09

标签: pandas dataframe matplotlib histogram

我正在尝试绘制直方图,其中y轴应该是计数,x轴(即垃圾箱)应该由所有国家/地区组成,但是我似乎无法弄清楚代码。

我尝试遵循https://datasciencelab.wordpress.com/tag/pandas/How to create Histograms in Panda Python Using Specific Rows and Columns in Data Frame,但它们都是针对条形图而非直方图的。

per_country = df.groupby(['COUNTRY'])[['TOTAL']].sum()
per_country = per_country.sort_values('TOTAL')
per_country.head()
medals_per_country['TOTAL'].plot(kind='hist')  # if hist is changed to bar, then it works, but I need a histogram and not a bar graph

结果应为直方图,其中x轴包括每个国家/地区的标签,y轴是每个国家/地区的总数。现在,垃圾箱仅基于“总计”,而y轴是带有“总计”的国家/地区。

有人可以指出正确的方向吗?谢谢!

0 个答案:

没有答案