使用Pandas中的数据框创建频率图(Python3)

时间:2018-10-31 09:18:38

标签: python-3.x pandas matplotlib

我目前在名为transactioncount_freq的数据框中存储了物品数量及其频率列表。

Item    Frequency
0   1   3474
1   2   2964
2   3   1532
3   4   937
4   5   360
5   6   168
6   7   57
7   8   25
8   9   5
9   10  5
10  11  3
11  12  1

如何使用pandas和matplotlib.pyplot将item值用作x轴,将frequency值用作y轴来制作条形图?

1 个答案:

答案 0 :(得分:0)

您可以像这样轻松地绘制它

transactioncount_freq.plot(x='Item', y='Frequency', kind='bar')

enter image description here