176 releases (21 breaking)
new 0.23.0-rc.3 | Apr 17, 2025 |
---|---|
0.22.1 | Feb 20, 2025 |
0.21.0 | Dec 18, 2024 |
0.20.2 | Nov 28, 2024 |
0.4.0 | Mar 28, 2023 |
#533 in Algorithms
45,898 downloads per month
Used in 58 crates
(2 directly)
49KB
865 lines
A histogram with i64
keys and u32
counts, supporting both sparse and dense uses.
It supports high-level summaries of the histogram, so that you can quickly get a birds-eye view of the data without having to visit every point in the histogram.
You can also think of the histogram as a multi-set, where you can insert the same key multiple times and then query how many times you've inserted it.
re_int_histogram
Part of the rerun
family of crates.
A histogram with i64
keys and u32
counts, supporting both sparse and dense uses.
It supports high-level summaries of the histogram, so that you can quickly get a birds-eye view of the data without having to visit every point in the histogram.
You can also think of the histogram as a multi-set, where you can insert the same key multiple times and then query how many times you've inserted it.
Used for noting at which times we have events, so that we can visualize it in the time panel.
Dependencies
~110KB