在绘制Pandas系列时,在日期时间索引上设置时间格式

时间:2016-12-08 18:42:50

标签: python pandas matplotlib timestamp

我有一个带有DatetimeIndex的Pandas Dataframe,其频率为每月(md)。但是,当我从此Dataframe绘制一列时,我的绘图上的标签显示日期和时间,即使这些位没有意义。我该如何解决这个问题,以便一个月只以M格式显示?

picture of problem

1 个答案:

答案 0 :(得分:2)

在绘制之前对DateTimeIndex进行一些小修改,方法是将其转换为PeriodIndex并提供每月频率,如此 -

a.index = a.index.to_period('M')  # Even a.index.astype('period[M]') works

<强> 演示:

如下所示考虑DF

idx = pd.date_range('2016/1/1', periods=10, freq='M')
df = pd.DataFrame(dict(count=np.random.randint(10,1000,10)), idx).rename_axis('start_date')
df

enter image description here

DateTimeIndex

>>> df.index
DatetimeIndex(['2016-01-31', '2016-02-29', '2016-03-31', '2016-04-30',
               '2016-05-31', '2016-06-30', '2016-07-31', '2016-08-31',
               '2016-09-30', '2016-10-31'],
              dtype='datetime64[ns]', name='start_date', freq='M')

PeriodIndex

>>> df.index = df.index.to_period('M')
>>> df.index
PeriodIndex(['2016-01', '2016-02', '2016-03', '2016-04', '2016-05', '2016-06',
             '2016-07', '2016-08', '2016-09', '2016-10'],
            dtype='period[M]', name='start_date', freq='M')

绘制它们:

df['count'].plot(kind='bar')
plt.show()

enter image description here