我正在尝试绘制两个不在连续日期的时间序列数据。因此,当我绘制它们时,它们看起来很奇怪。我不知道如何修复它是我的代码和数字。谢谢。
date=read_myfile['Date']
x=[dt.datetime.strptime(d,'%m/%d/%Y').date() for d in date]
y=read_myfile['Observed']
y1=read_myfile['Simulated']
plt.plot(x,y,color='blue');
plt.plot(x,y1,color='red');
plt.gcf().autofmt_xdate()
两个时间序列的数据。