get_anomalies_median#
- get_anomalies_median(ts: TSDataset, in_column: str = 'target', window_size: int = 10, alpha: float = 3) Dict[str, List[Timestamp]] [source]#
Get point outliers in time series using median model (estimation model-based method).
Outliers are all points deviating from the median by more than alpha * std, where std is the sample variance in the window.
- Parameters:
- Returns:
dict of outliers in format {segment: [outliers_timestamps]}
- Return type: