Skip to content

Commit

Permalink
clearer example
Browse files Browse the repository at this point in the history
  • Loading branch information
kwinkunks committed Nov 21, 2022
1 parent 058674a commit d28e5b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ For developers, there are `pip` options for installing `tests`, `docs` and `dev`

```python
>>> import redflag as rf
>>> data = [-3, -2, -2, -1, 0, 0, 0, 1, 2, 2, 3]
>>> data = 3 * [-3, -2, -2, -1, 0, 0, 0, 1, 2, 2, 3]
>>> rf.get_outliers(data)
array([], dtype=int64)
>>> rf.get_outliers(3 * data + [100])
>>> rf.get_outliers(data + [100])
array([33])
```

Expand Down

0 comments on commit d28e5b9

Please sign in to comment.