如何使用 Matplotlib 在 X 轴上根据特定日期绘制数据?
要使用 matplotlib 在 X 轴上根据特定日期绘制数据,我们可以采取以下步骤 -
设置图片大小并调整子图之间和周围的填充。
列出日期并将其转换为 x 中的日期时间格式。
列出 y 数据点。
设置主要刻度的格式化程序。
设置 major ticker 的定位器。
使用 plot() 方法绘制 x 和 y 数据点。
要显示图片,请使用 show() 方法。
示例
from datetime import datetime 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/2021", "01/03/2021", "01/04/2021", "01/05/2021", "01/06/2021", ] x = [datetime.strptime(d, "%m/%d/%Y").date() for d in dates] y = [1, 5, 3, 8, 4] ax = plt.gca() ax.xaxis.set_major_formatter(mdates.DateFormatter("%Y-%m-%d")) ax.xaxis.set_major_locator(mdates.DayLocator()) ax.plot(x, y) plt.show()
产出
广告