#histogram #count #key #i64 #u32 #dense #sparse

re_int_histogram

A histogram with i64 keys and u32 counts, supporting both sparse and dense uses

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

Download history 12367/week @ 2024-07-31 12865/week @ 2024-08-07 11468/week @ 2024-08-14 10374/week @ 2024-08-21 8310/week @ 2024-08-28 8335/week @ 2024-09-04 6570/week @ 2024-09-11 5901/week @ 2024-09-18 5435/week @ 2024-09-25 3858/week @ 2024-10-02 5061/week @ 2024-10-09 5930/week @ 2024-10-16 4046/week @ 2024-10-23 5376/week @ 2024-10-30 5534/week @ 2024-11-06 6285/week @ 2024-11-13

22,182 downloads per month
Used in 42 crates (2 directly)

MIT/Apache

48KB
865 lines

re_int_histogram

Part of the rerun family of crates.

Latest version Documentation MIT Apache

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