Skip to content

Commit

Permalink
Update anomaly detection tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
rosericazondekon committed May 9, 2023
1 parent 23011b8 commit fac6260
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/articles/anomaly_detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Now, let’s visualize the time series with the anomalies
>>> sns.despine()
```

![EWMA Detector](detectors/ewma.png)
[![EWMA](detectors/ewma.png)](#exponentially-weighted-moving-average-ewma)

### Adaptive Multiple Regression

Expand Down Expand Up @@ -160,7 +160,7 @@ Let’s filter `df_regression` and visualize the time series with the anomalies
>>> sns.despine()
```

![Regression Detector](detectors/regression.png)
[![Regression Detector](detectors/regression.png)](#adaptive-multiple-regression)

### Regression/EWMA Switch

Expand Down Expand Up @@ -219,7 +219,7 @@ Let’s visualize the time series with the anomalies for Region 4:
>>> sns.despine()
```

![Regression/EWMA Switch Detector](detectors/switch.png)
[![Regression/EWMA Switch Detector](detectors/switch.png)](#regression-ewma-switch)

### Negative Binomial Regression

Expand Down Expand Up @@ -285,9 +285,9 @@ Now, applying Negative Binomial detector...
>>> sns.despine()
```

![Negative Binomial Detector](detectors/nbinom.png)
[![Negative Binomial Detector](detectors/nbinom.png)](#negative-binomial-regression)

### Original Serfling detector
### Original Serfling Detector

The Original Serfling detector is intended for weekly time series spanning multiple years.
It fits a linear regression model with a time term and sine and cosine terms to a baseline period that ideally spans 5 or more years.
Expand Down Expand Up @@ -345,4 +345,4 @@ Using the same simulated time series from the previous examples, the Negative Bi
>>> sns.despine()
```

![Original Serfling Detector](detectors/serfling.png)
[![Original Serfling Detector](detectors/serfling.png)](#original-serfling-detector)

0 comments on commit fac6260

Please sign in to comment.