Skip to content
Snippets Groups Projects
Commit 6ddb1c0a authored by David Schäfer's avatar David Schäfer
Browse files

Update SpikeDetection.md

parent b14746d6
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ The algorithm works as follows:
### Outlier Detection Methods
Currently two outlier detection methods are implemented:
1. `zscore`: The Z-score marks every value as a possible outlier, which fulfills the follwing condition:
1. `"zscore"`: The Z-score marks every value as a possible outlier, which fulfills the follwing condition:
```math
|r - m| > s * z
......@@ -116,7 +116,7 @@ Currently two outlier detection methods are implemented:
where $`r`$ denotes the residual, $`m`$ the residual mean, $`s`$ the residual
standard deviation, and $`z`$ the $`z`$-parameter.
2. "modZ": The modified Z-score Marks every value as a possible outlier, which fulfills the follwing condition:
2. `"modZ"`: The modified Z-score Marks every value as a possible outlier, which fulfills the follwing condition:
```math
0.6745 * |r - m| > mad * z > 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment