首页 >后端开发 >Python教程 >如何使用 Matplotlib 在 X 轴上绘制时间?

如何使用 Matplotlib 在 X 轴上绘制时间?

Barbara Streisand
Barbara Streisand原创
2024-11-30 09:26:12210浏览

How to Plot Time on the X-axis Using Matplotlib?

使用 Matplotlib 在独立轴上绘制时间

将时间戳转换为日期时间对象并使用plot_date() 进行绘图

In为了使用 Matplotlib 在 x 轴上绘制时间,有必要首先转换时间戳数组到 Python 日期时间对象。利用 datetime.strptime 完成此转换。

随后,使用 date2num 将日期转换为 matplotlib 格式。

最后,利用plot_date函数可视化日期及其对应的值。

import matplotlib.pyplot as plt
import matplotlib.dates

from datetime import datetime

# Datetime Objects as Independent Variable
time_strs = ['00:00:00.000000', '01:00:00.000000', '02:00:00.000000']
x_values = [datetime.strptime(t, '%H:%M:%S.%f') for t in time_strs]

# Corresponding y-axis values
y_values = [0.1, 0.2, 0.3]

# Convert dates to matplotlib format
dates = matplotlib.dates.date2num(x_values)

# Plot Time vs. Values
plt.plot_date(dates, y_values)
plt.xlabel('Time')
plt.ylabel('Value')
plt.show()

此代码将有效地将时间绘制为 x 轴上的自变量,以及相应的 y 轴所代表的值。

以上是如何使用 Matplotlib 在 X 轴上绘制时间?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn