在 X 轴上绘制日期:故障排除指南
根据日期绘制数据时,必须将日期转换为matplotlib 可以解释的格式。但是,如果您遇到“年份超出范围”错误,则表明日期转换过程出现问题。
让我们解决您所描述的情况:
问题: 使用plot_date() 时以“01/02/1991”格式转换日期会导致错误。
解决方案:
而不是使用plot_date(),请考虑使用更简单的plot()函数。要准备用于绘图的日期:
<code class="python">import datetime as dt dates = ['01/02/1991','01/03/1991','01/04/1991'] x = [dt.datetime.strptime(d,'%m/%d/%Y').date() for d in dates]</code>
<code class="python">import matplotlib.pyplot as plt plt.gca().xaxis.set_major_formatter(mdates.DateFormatter('%m/%d/%Y')) plt.gca().xaxis.set_major_locator(mdates.DayLocator()) plt.plot(x, y) plt.gcf().autofmt_xdate()</code>
此方法将根据 x 轴上指定的日期正确绘制数据,从而解决您遇到的错误。
以上是排除 X 轴绘图的日期时间转换错误的详细内容。更多信息请关注PHP中文网其他相关文章!