155 releases (18 breaking)
new 0.20.1-rc.1 | Nov 20, 2024 |
---|---|
0.19.1 | Nov 5, 2024 |
0.17.0 | Jul 8, 2024 |
0.15.0-alpha.5 | Mar 29, 2024 |
0.4.0 | Mar 28, 2023 |
#51 in Robotics
22,182 downloads per month
Used in 42 crates
(2 directly)
48KB
865 lines
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.
lib.rs
:
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.
Dependencies
~110KB