LoslegenKostenlos loslegen

MAD on time series

Initially, you can approach time series anomaly detection just like a regular dataset. For example, you can take a univariate approach and fit MAD to one of the time series columns.

pandas and the MAD estimator are already loaded for you.

Diese Übung ist Teil des Kurses

Anomaly Detection in Python

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Load the Apple stocks dataset with a proper DatatimeIndex
apple = pd.read_csv(____)
Code bearbeiten und ausführen