我无法在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
是浮点数列表。