鉴于一个简单的熊猫系列,创建直方图(条形图)的简单方法是什么?

时间:2017-11-28 20:38:47

标签: python pandas numpy matplotlib histogram

我有一个像这样的超级系列:

-d

它只是在给定时间内对事物的观察次数的计数。如何在Jupyter笔记本中快速轻松地绘制直方图?第一个箱子是0到1个小时(00:00到01:00),第二个箱子是1到2个小时(01:00到02:00),依此类推。

1 个答案:

答案 0 :(得分:2)

如果您需要标准条形图:

In [8]: import matplotlib
   ...: matplotlib.style.use('ggplot')
   ...:

In [9]: s.plot.bar(rot=0, grid=True, width=1, alpha=0.7)
Out[9]: <matplotlib.axes._subplots.AxesSubplot at 0xaaab7f0>

enter image description here