statsmodels.tsa.seasonal.DecomposeResult#
- class statsmodels.tsa.seasonal.DecomposeResult(observed, seasonal, trend, resid, weights=None)[source]#
Results class for seasonal decompositions
- Parameters:
- observed
ndarray,Series,orDataFrame The data series that has been decomposed.
- seasonal
ndarray,Series,orDataFrame The seasonal component of the data series.
- trend
ndarray,Series,orDataFrame The trend component of the data series.
- resid
ndarray,Series,orDataFrame The residual component of the data series.
- weights
ndarray,Series,orDataFrame,optional The weights used to reduce outlier influence.
- observed
- Attributes:
Methods
plot([observed, seasonal, trend, resid, weights])Plot estimated components
Methods
plot([observed, seasonal, trend, resid, weights])Plot estimated components
Properties