使用DataFrame索引作为x轴刻度

时间:2017-03-25 12:41:36

标签: python pandas

我有一个带有索引(时间)和一列(速率)的DataFrame。我只想在时间图中使用Time作为x-ticks,将y作为y轴。

这是我到目前为止所得到的:

data = pd.DataFrame.from_dict(rates,orient='index')
data.index.name = 'Time'
data.columns = ['Rate']
data.plot(kind='hist', x = data.index.values)

print(data)产生:

          Rate
Time          
0     1.191309
1     1.208280
2     1.244835
3     1.279342
4     1.307912
5     1.532720

1 个答案:

答案 0 :(得分:1)

演示:

import matplotlib.pyplot as plt
import matplotlib
matplotlib.style.use('ggplot')

来源DF:

In [122]: data
Out[122]:
          Rate
Time
0     1.191309
1     1.208280
2     1.244835
3     1.279342
4     1.307912
5     1.532720

Bar-plot

In [126]: data.plot.bar(rot=0)
Out[126]: <matplotlib.axes._subplots.AxesSubplot at 0xe1fe048>

enter image description here

Histogram plot

In [131]: data.plot.hist(rot=0)
Out[131]: <matplotlib.axes._subplots.AxesSubplot at 0xe7611d0>

enter image description here