如何在 Matplotlib 中在 X 轴上显示日期和时间?


要在 Matplotlib 中在 X 轴上显示日期和时间,我们可以采取以下步骤:

  • 设置图形大小,并调整子图之间和周围的填充。
  • 创建一个 datesy 值的列表。
  • 获取当前的坐标轴。
  • 设置主要的日期格式和定位器。
  • 使用 plot() 方法绘制 xy 值。
  • 要显示图形,请使用 show() 方法。

示例

from datetime import datetime as dt
from matplotlib import pyplot as plt, dates as mdates

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

dates = ["01/02/2020", "01/03/2020", "01/04/2020"]
x_values = [dt.strptime(d, "%m/%d/%Y").date() for d in dates]
y_values = [1, 2, 3]
ax = plt.gca()

formatter = mdates.DateFormatter("%Y-%m-%d")
ax.xaxis.set_major_formatter(formatter)
locator = mdates.DayLocator()
ax.xaxis.set_major_locator(locator)
plt.plot(x_values, y_values)

plt.show()

输出

更新于:08-Jul-2021

7K+ 浏览

开启你的事业

完成课程并获得认证

开始学习
广告