You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.
23
+
/// The column data is a vector of <see cref="System.Double"/>. The vector contains 4 elements: alert (non-zero value means a change point), raw score, p-Value and martingale score.</param>
24
+
/// <param name="inputColumnName">Name of column to transform. The column data must be <see cref="System.Single"/>. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
25
+
/// <param name="confidence">The confidence for change point detection in the range [0, 100].</param>
26
+
/// <param name="changeHistoryLength">The length of the sliding window on p-values for computing the martingale score.</param>
27
+
/// <param name="martingale">The martingale used for scoring.</param>
28
+
/// <param name="eps">The epsilon parameter for the Power martingale.</param>
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.
71
+
/// The column data is a vector of <see cref="System.Double"/>. The vector contains 3 elements: alert (non-zero value means a spike), raw score, and p-value.</param>
72
+
/// <param name="inputColumnName">Name of column to transform. The column data must be <see cref="System.Single"/>.
73
+
/// If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
74
+
/// <param name="confidence">The confidence for spike detection in the range [0, 100].</param>
75
+
/// <param name="pvalueHistoryLength">The size of the sliding window for computing the p-value.</param>
76
+
/// <param name="side">The argument that determines whether to detect positive or negative anomalies, or both.</param>
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.
118
+
/// The column data is a vector of <see cref="System.Double"/>. The vector contains 4 elements: alert (non-zero value means a change point), raw score, p-Value and martingale score.</param>
119
+
/// <param name="inputColumnName">Name of column to transform. The column data must be <see cref="System.Single"/>.
120
+
/// If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
121
+
/// <param name="confidence">The confidence for change point detection in the range [0, 100].</param>
122
+
/// <param name="trainingWindowSize">The number of points from the beginning of the sequence used for training.</param>
123
+
/// <param name="changeHistoryLength">The size of the sliding window for computing the p-value.</param>
124
+
/// <param name="seasonalityWindowSize">An upper bound on the largest relevant seasonality in the input time-series.</param>
125
+
/// <param name="errorFunction">The function used to compute the error between the expected and the observed value.</param>
126
+
/// <param name="martingale">The martingale used for scoring.</param>
127
+
/// <param name="eps">The epsilon parameter for the Power martingale.</param>
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.
185
+
/// The column data is a vector of <see cref="System.Double"/>. The vector contains 3 elements: alert (non-zero value means a spike), raw score, and p-value.</param>
186
+
/// <param name="inputColumnName">Name of column to transform. The column data must be <see cref="System.Single"/>.
187
+
/// If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
188
+
/// <param name="confidence">The confidence for spike detection in the range [0, 100].</param>
189
+
/// <param name="pvalueHistoryLength">The size of the sliding window for computing the p-value.</param>
190
+
/// <param name="trainingWindowSize">The number of points from the beginning of the sequence used for training.</param>
191
+
/// <param name="seasonalityWindowSize">An upper bound on the largest relevant seasonality in the input time-series.</param>
192
+
/// <param name="side">The argument that determines whether to detect positive or negative anomalies, or both.</param>
193
+
/// <param name="errorFunction">The function used to compute the error between the expected and the observed value.</param>
0 commit comments