gpt4 book ai didi

python - 在 matplotlib 中显示毫秒

转载 作者:太空狗 更新时间:2023-10-29 20:52:31 25 4
gpt4 key购买 nike

我使用 matplotlib 以 hh:mm:ss.ms 格式绘制数据作为时间的函数,其中 ms 是毫秒。但是,我没有在图中看到毫秒数。是否也可以添加它们?

dates = matplotlib.dates.datestr2num(x_values) # convert string dates to numbers
plt.plot_date(dates, y_values) # doesn't show milliseconds

最佳答案


这里的问题是有一个类来格式化刻度,而 plot_date 将该类设置为您不想要的东西:一个从不绘制毫秒的自动格式化程序。

为了改变这一点,您需要将 matplotlib.dates.AutoDateFormatter 更改为您自己的格式化程序。 matplotlib.dates.DateFormatter(fmt) 使用 datetime.strftime 格式字符串创建格式化程序。我不确定如何让它显示毫秒,但它会显示微秒,我希望这对你有用;毕竟,它只是一个额外的零。试试这个代码:

dates = matplotlib.dates.datestr2num(x_values) # convert string dates to numbers
plt.plot_date(dates, y_values) # doesn't show milliseconds by default.

# This changes the formatter.
plt.gca().xaxis.set_major_formatter(matplotlib.dates.DateFormatter("%H:%M:%S.%f"))

# Redraw the plot.
plt.draw()

关于python - 在 matplotlib 中显示毫秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11107748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com