gpt4 book ai didi

python - Matplotlib:将纪元时间戳显示为绘图中的常规日期

转载 作者:太空宇宙 更新时间:2023-11-03 14:00:14 25 4
gpt4 key购买 nike

这是我绘制 col_A 与时间的代码:

ax[0].plot(data_df['time'], data_df['col_A'] , color = 'black')

情节如下:

enter image description here

x 轴时间当前采用“纪元时间戳”单位 ( https://www.freeformatter.com/epoch-timestamp-to-date-converter.html )。我可以在图中使用常规日期显示 x 轴吗?谢谢!

最佳答案

您可以尝试在绘图函数中添加 data_df['time'].astype('datetime64[s]') 而不是仅添加 data_df['time'] :

ax[0].plot(data_df['time'].astype('datetime64[s]'), data_df['col_A'] , color = 'black')

关于python - Matplotlib:将纪元时间戳显示为绘图中的常规日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49307605/

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