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

re_int_histogram

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

101 releases (14 breaking)

new 0.16.0-rc.3 May 15, 2024
0.15.1 Apr 11, 2024
0.15.0-alpha.5 Mar 29, 2024
0.12.0-alpha.2 Dec 26, 2023
0.4.0 Mar 28, 2023

#182 in Machine learning

Download history 830/week @ 2024-01-24 906/week @ 2024-01-31 880/week @ 2024-02-07 2916/week @ 2024-02-14 3839/week @ 2024-02-21 5549/week @ 2024-02-28 4630/week @ 2024-03-06 4528/week @ 2024-03-13 2873/week @ 2024-03-20 2592/week @ 2024-03-27 3988/week @ 2024-04-03 5789/week @ 2024-04-10 5430/week @ 2024-04-17 5298/week @ 2024-04-24 4236/week @ 2024-05-01 3341/week @ 2024-05-08

19,395 downloads per month
Used in 23 crates (via re_entity_db)

MIT/Apache

48KB
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

~115KB