Pyplot - 如何绘制针/直方图样式?

时间:2014-04-17 05:39:55

标签: python r matplotlib histogram

我想制作带针符号的情节,就像在R:

中一样
x = 1:10
y = rnorm(10)
plot(x,y,type ='h')

有谁知道如何在Python中绘制这样的数字?不是直方图,只是用针象征的x-y图。

>>> jan_avg
Jan+0    139.833333
Feb+0    158.318182
Mar+0    149.500000
Apr+0    106.750000
May+0    104.477273
Jun+0    105.159091
Jul+0     56.295455
Aug+0     56.295455
Sep+0     56.295455
Oct+0     53.659091
Nov+0     53.659091
Dec+0     53.659091

这里第一列是数据框jan_avg的索引,将是我的x轴..

>>> jan_avg.plot() # What choices should I specify here?

1 个答案:

答案 0 :(得分:0)

想想我已经明白了:

jan_avg.plot(kind = 'bar')