Finish sentence (#17343)

This commit is contained in:
Diogo Gomes 2021-04-08 16:26:20 +01:00 committed by GitHub
parent 82dda773b7
commit 367ead6353
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,7 +130,7 @@ The returned value is rounded to the number of decimals defined in (`precision`)
The Outlier filter (`outlier`) is a basic Band-pass filter, as it cuts out any value outside a specific range. The Outlier filter (`outlier`) is a basic Band-pass filter, as it cuts out any value outside a specific range.
The included Outlier filter will discard any value beyond a band centered on the median of the previous values, replacing it with the median value of the previous values. If inside the band, the The included Outlier filter will discard any value beyond a band centered on the median of the previous values, replacing it with the median value of the previous values. If inside the band, the current state is returned.
```python ```python
distance = abs(state - median(previous_states)) distance = abs(state - median(previous_states))