-
Notifications
You must be signed in to change notification settings - Fork 11
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
Binary histogram over-counts entries #4
Comments
The issue likely is due to how binary histograms handle 0 values.
|
@halorgium is right I think. For better or for worse the binary histogram uses a Sorry I missed this for so long. If we wanted to "fix" it I think it would need a major version bump as this would break any code depending on the now 10-year-old (yikes) behavior, however convoluted it is in this case. |
In the following output, note how the total from the binary histogram (35,869) is not the count (36,175). The linear histogram produces an accurate count.
The text was updated successfully, but these errors were encountered: