data : array
Typically a 2-dimensional array (series x samples). Multi-feature samples
are supported (series x samples x features), but they have to be
aggregated into a scalar. See aggfx.
outlier_abs_minthresh : float or None
Absolute minimum threshold of outlier detection. Only value larger than
this this threshold will ever be considered as an outlier
outlier_thresh : float or None
Outlier classification threshold in units of standard deviation.
greedy_outlier : bool
If True, an entire time series is marked as an outlier, if any of its
observations matches the criterion. If False, only individual observations
are marked as outlier.
aggfx : functor or None
Aggregation function used to collapse multi-feature samples into a scalar
value
*args : :
Additional arguments for aggfx.
|