Matplotlib:日期格式不正确

时间:2017-08-22 16:26:50

标签: python matplotlib

我无法在x轴上正确显示时间值。

以下是我用来绘制数据的代码:

fig, ax = plt.subplots()
my_fmt = mdates.DateFormatter('%H:%M:%S')
plt.plot(times, prices)
ax.xaxis.set_major_formatter(my_fmt)
plt.savefig('final.png', bbox_inches='tight')

实际上,DateFormatter似乎没有效果。你能告诉我我的代码有什么问题吗?

times是日期时间列表,prices是浮点数列表。

enter image description here

0 个答案:

没有答案