#histogram #visualization #multimodal #robotics

re_int_histogram

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

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

Download history 1878/week @ 2024-12-26 4890/week @ 2025-01-02 6312/week @ 2025-01-09 5919/week @ 2025-01-16 5556/week @ 2025-01-23 6026/week @ 2025-01-30 5983/week @ 2025-02-06 5028/week @ 2025-02-13 7506/week @ 2025-02-20 7688/week @ 2025-02-27 13480/week @ 2025-03-06 13849/week @ 2025-03-13 11533/week @ 2025-03-20 8019/week @ 2025-03-27 12141/week @ 2025-04-03 12000/week @ 2025-04-10

45,898 downloads per month
Used in 58 crates (2 directly)

MIT/Apache

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.

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.

Dependencies

~110KB