-
Notifications
You must be signed in to change notification settings - Fork 912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added the IQR Detector #2441
Added the IQR Detector #2441
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2441 +/- ##
==========================================
- Coverage 93.79% 93.79% -0.01%
==========================================
Files 138 139 +1
Lines 14654 14666 +12
==========================================
+ Hits 13745 13756 +11
- Misses 909 910 +1 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this great PR @u8-igor, it already looks really good 🚀
Your code is well-written.
I just added a couple of minor suggestions where we could try to simplify a bit here and there.
Co-authored-by: Dennis Bader <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks perfect now, thanks a lot @u8-igor 🚀 Ready to merge once all tests have passed 💯
Checklist before merging this PR:
Closes #2319.
Summary
Added IQRDetector, allowing for detecting anomalies using the interquartile range algorithm.
It is based on the QuantileDetector and has a
scale
parameter for adjusting the acceptable range.Other Information