НачатьНачать бесплатно

Fitting on residuals

Another method of detecting outliers from time series is fitting a classifier to the residuals from decomposition. This is also a univariate approach with the advantage of being much faster than other multivariate methods.

The apple dataset has been loaded, along with MAD estimator and the seasonal_decompose function.

Это упражнение является частью курса

Anomaly Detection in Python

Посмотреть курс

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

results = seasonal_decompose(apple['Volume'], period=365)

# Extract and reshape the residuals
residuals = ____
residuals = ____
Редактировать и запускать код