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

re_int_histogram

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

88 releases (13 breaking)

new 0.15.0-alpha.3 Mar 18, 2024
0.14.1 Feb 29, 2024
0.12.0-alpha.2 Dec 26, 2023
0.11.0 Nov 28, 2023
0.4.0 Mar 28, 2023

#271 in Math

Download history 444/week @ 2023-11-26 180/week @ 2023-12-03 750/week @ 2023-12-10 775/week @ 2023-12-17 165/week @ 2023-12-24 404/week @ 2023-12-31 843/week @ 2024-01-07 608/week @ 2024-01-14 596/week @ 2024-01-21 899/week @ 2024-01-28 989/week @ 2024-02-04 1908/week @ 2024-02-11 3212/week @ 2024-02-18 4920/week @ 2024-02-25 5222/week @ 2024-03-03 1624/week @ 2024-03-10

15,103 downloads per month
Used in 23 crates (via re_entity_db)

MIT/Apache

43KB
861 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

~120KB