SrCnnDeseasonalityMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Deseasonality modes of SrCnn models. The de-seasonality mode is invoked when the period of the series is greater than 0.
public enum SrCnnDeseasonalityMode
type SrCnnDeseasonalityMode =
Public Enum SrCnnDeseasonalityMode
- Inheritance
-
SrCnnDeseasonalityMode
Fields
Name | Value | Description |
---|---|---|
Stl | 0 | In this mode, the stl decompose algorithm is used to de-seasonality. |
Mean | 1 | In this mode, the mean value of points in the same position in a period is substracted to de-seasonality. |
Median | 2 | In this mode, the median value of points in the same position in a period is substracted to de-seasonality. |