@@ -33,6 +33,7 @@ public static class TimeSeriesCatalog
33
33
/// ]]>
34
34
/// </format>
35
35
/// </example>
36
+ [ Obsolete ( "This API method is deprecated, please use the overload with confidence parameter of type double." ) ]
36
37
public static IidChangePointEstimator DetectIidChangePoint ( this TransformsCatalog catalog , string outputColumnName , string inputColumnName ,
37
38
int confidence , int changeHistoryLength , MartingaleType martingale = MartingaleType . Power , double eps = 0.1 )
38
39
=> DetectIidChangePoint ( catalog , outputColumnName , inputColumnName , ( double ) confidence , changeHistoryLength , martingale , eps ) ;
@@ -81,6 +82,7 @@ public static IidChangePointEstimator DetectIidChangePoint(this TransformsCatalo
81
82
/// ]]>
82
83
/// </format>
83
84
/// </example>
85
+ [ Obsolete ( "This API method is deprecated, please use the overload with confidence parameter of type double." ) ]
84
86
public static IidSpikeEstimator DetectIidSpike ( this TransformsCatalog catalog , string outputColumnName , string inputColumnName ,
85
87
int confidence , int pvalueHistoryLength , AnomalySide side = AnomalySide . TwoSided )
86
88
=> DetectIidSpike ( catalog , outputColumnName , inputColumnName , ( double ) confidence , pvalueHistoryLength , side ) ;
@@ -132,6 +134,7 @@ public static IidSpikeEstimator DetectIidSpike(this TransformsCatalog catalog, s
132
134
/// ]]>
133
135
/// </format>
134
136
/// </example>
137
+ [ Obsolete ( "This API method is deprecated, please use the overload with confidence parameter of type double." ) ]
135
138
public static SsaChangePointEstimator DetectChangePointBySsa ( this TransformsCatalog catalog , string outputColumnName , string inputColumnName ,
136
139
int confidence , int changeHistoryLength , int trainingWindowSize , int seasonalityWindowSize , ErrorFunction errorFunction = ErrorFunction . SignedDifference ,
137
140
MartingaleType martingale = MartingaleType . Power , double eps = 0.1 )
@@ -198,6 +201,7 @@ public static SsaChangePointEstimator DetectChangePointBySsa(this TransformsCata
198
201
/// ]]>
199
202
/// </format>
200
203
/// </example>
204
+ [ Obsolete ( "This API method is deprecated, please use the overload with confidence parameter of type double." ) ]
201
205
public static SsaSpikeEstimator DetectSpikeBySsa ( this TransformsCatalog catalog , string outputColumnName , string inputColumnName , int confidence , int pvalueHistoryLength ,
202
206
int trainingWindowSize , int seasonalityWindowSize , AnomalySide side = AnomalySide . TwoSided , ErrorFunction errorFunction = ErrorFunction . SignedDifference )
203
207
=> DetectSpikeBySsa ( catalog , outputColumnName , inputColumnName , ( double ) confidence , pvalueHistoryLength , trainingWindowSize , seasonalityWindowSize , side , errorFunction ) ;
0 commit comments