如何在matplotlib中以'%H:%M'格式在y轴上绘制时间?

the*_*ist 3 python matplotlib python-datetime pandas

我想绘制 datetime64 系列中的时间,其中 y 轴的格式为 '%H:%M,仅显示 00:00、01:00、02:00 等。

这就是没有自定义 y 轴格式的绘图的样子。

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib.dates import DateFormatter
from matplotlib.dates import HourLocator

df = pd.DataFrame(data=dict(a=pd.date_range('1/1/2011',periods=1440000,freq='1min')))
df = df.iloc[np.arange(0,1440*100,1440)+np.random.randint(1,300,100)]

plt.plot(df.index,df['a'].dt.time)
plt.show()
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

在阅读关于 SO 的主题后,我尝试了以下但没有成功。

ax = plt.subplot()
ax.yaxis.set_major_locator(HourLocator())
ax.yaxis.set_major_formatter(DateFormatter('%H:%M'))
plt.plot(df.index,df['a'].dt.time)
plt.show()

ValueError: DateFormatter found a value of x=0, which is an illegal date.  This usually occurs because you have not informed the axis that it is plotting dates, e.g., with ax.xaxis_date()
Run Code Online (Sandbox Code Playgroud)

有人可以建议我吗?

Sto*_*ica 5

为此,您需要传递datetime对象(我的意思是datetime,而不是datetime64)。您可以将所有时间戳转换为同一日期,然后用于.tolist()获取实际datetime对象。

y = df['a'].apply(lambda x: x.replace(year=1967, month=6, day=25)).tolist()
ax = plt.subplot()
ax.plot(df.index, y)
ax.yaxis.set_major_locator(HourLocator())
ax.yaxis.set_major_formatter(DateFormatter('%H:%M'))
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明