When i'm plotting the seasonal_decompose I get a plot filled to the brim with blue lines, the whole plot is filled. What is going wrong?seasonal decompose
decomposition = sm.tsa.seasonal_decompose(df1['Column1'], period=12)
plt.figure(figsize=(12, 8))
plt.subplot(4, 1, 1)
plt.plot(df1['Column1'], label='Original')
plt.legend()
plt.subplot(4, 1, 2)
plt.plot(decomposition.trend, label='Trend')
plt.legend()
plt.subplot(4, 1, 3)
plt.plot(decomposition.seasonal, label='Season')
plt.legend()
plt.subplot(4, 1, 4)
plt.plot(decomposition.resid, label='Residual')
plt.legend()
plt.tight_layout()
plt.show()
I've tried using different type of decompose ("Multiplicative" or "Additive")
Here is a MCVE for seasonal decomposition: