残差图在我的图中未正确显示。我无法理解问题可能是什么。请在此处输入图像描述需要帮助。轴有问题。我正在提取 COVID 19 的数据,并且正在绘制一阶数据(固定集)。我已经删除了所有 nan 值。
数据格式为日期 value_diff 268 2020-10-16 745.0 269 2020-10-17 428.0 270 2020-10-18 465.0
ecomposition = seasonal_decompose(data_set_3, model='additive', period=7)
trend = decomposition.trend
seasonal = decomposition.seasonal
residual = decomposition.resid
plt.subplot(411)
plt.plot(data_set_3, label='Original')
plt.legend(loc='best')
plt.subplot(412)
plt.plot(trend, label='Trend')
plt.legend(loc='best')
plt.subplot(413)
plt.plot(seasonal, label='Seasonality')
plt.legend(loc='best')
plt.subplot(414)
plt.plot(residual, label='Residuals')
plt.legend(loc='best')
plt.tight_layout()