-
Notifications
You must be signed in to change notification settings - Fork 421
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
Fix Wrong quantiles calculated for some Truncated #1726 #1727
Conversation
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.
Thank you for the PR! I made a suggestion for how to improve it a bit 🙂
Can you also add tests of the fixed issue?
@devmotion you are welcome 😉 I think the examples resemble the discussed issues covered by this patch. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #1727 +/- ##
==========================================
+ Coverage 85.71% 85.91% +0.20%
==========================================
Files 140 142 +2
Lines 8455 8569 +114
==========================================
+ Hits 7247 7362 +115
+ Misses 1208 1207 -1
☔ View full report in Codecov by Sentry. |
@devmotion bump |
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.
Sorry, I was busy the last weeks with other things. The PR looks good to me, thanks!
As described in
#1726, there occur small numbers-big number problems while evaluating quantiles on
Truncated
.This Fix uses the knowledge on the upper bound of
Truncated
to properly limit the output.