繁体   English   中英

为分类数据绘制直方图

[英]Plotting a histogram for categorical data

我有一个包含两列的数据集,如下所示:

    index   Year
0   5   <2012
1   8   >=2012
2   9   >=2012
3   10  <2012
4   15  <2012
... ... ...
171 387 >=2012
172 390 <2012
173 398 <2012
174 403 >=2012
175 409 <2012

我想在直方图中绘制它。 我试过

plt.style.use('ggplot')

df.groupby(['Year'])\
      .Year.count().unstack().plot.bar(legend=True)

plt.show()

但我有一个错误: AttributeError: 'CategoricalIndex' object has no attribute 'remove_unused_levels' for

df.groupby(['Year'])\
          .Year.count().unstack().plot.bar(legend=True)

我认为这是因为我使用的是分类值。 任何帮助将不胜感激。

尝试:

plt.style.use('ggplot')
df.groupby(["Year"])["Year"].agg("count").plot.bar();

在此处输入图片说明

或者:

plt.hist(df["Year"]);

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM