Skip to content
Open
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
eb187cd
added HistogramsAggregator
TjarkMiener Apr 20, 2026
bb339a8
fix docs
TjarkMiener Apr 20, 2026
5cd9bd7
ensure same binnnig for each chunk
TjarkMiener Apr 20, 2026
1ec68fc
remove density from docstring
TjarkMiener Apr 20, 2026
4ee4194
use boosting histograms for the aggregation
TjarkMiener Apr 20, 2026
8acfaf6
make assert for hist object more meanigful
TjarkMiener Apr 20, 2026
f8e25f9
make HistogramAggregator a subclass of the stats one and calculate al…
TjarkMiener Apr 22, 2026
b104414
fix table meta reading in docs example
TjarkMiener Apr 22, 2026
5237c57
also compute histo variances
TjarkMiener Apr 23, 2026
c9f4f48
bump data format version in test
TjarkMiener Apr 23, 2026
b61ad34
add to the docs a small code snippet to use basic hist plotting funcs
TjarkMiener Apr 23, 2026
8ac5d5c
added step in tutorial description
TjarkMiener Apr 23, 2026
d414c34
fix docs
TjarkMiener Apr 23, 2026
8233adb
fix underscore for tutorial title
TjarkMiener Apr 23, 2026
6951549
do not store vars from histograms
TjarkMiener Apr 23, 2026
e91e13a
fix typo
TjarkMiener Apr 23, 2026
c2035aa
polish configuration of histo agg
TjarkMiener Apr 23, 2026
9ed2df2
fix metadata passing of _add_result_columns()
TjarkMiener Apr 24, 2026
1a053d0
polish comment in histogram aggregation tutorial
TjarkMiener Apr 24, 2026
29dc62f
make HistoAgg inherit from BaseAgg
TjarkMiener Apr 24, 2026
92db017
make table group class attribute
TjarkMiener Apr 24, 2026
0564bb7
fix axis name bug
TjarkMiener Apr 27, 2026
0b867f8
only calc histograms in HistogramAggregatorr; do not assess stats des…
TjarkMiener Apr 27, 2026
b022e43
fix import
TjarkMiener Apr 27, 2026
89bc572
fix tests for pix stats tool
TjarkMiener Apr 27, 2026
6319116
rename conotainer for chunked histograms and fix inheritance
TjarkMiener Apr 27, 2026
db2fa0a
implemented latest comments
TjarkMiener Apr 27, 2026
740717e
make aggregator and chunk/stats containers independent from the camer…
TjarkMiener Apr 27, 2026
962ce8c
polish compute_histograms() function to make it generic and independe…
TjarkMiener Apr 27, 2026
2278796
polish testing for random shapes and check that introduced shift betw…
TjarkMiener Apr 27, 2026
6f220b7
use hist.stack for computing the histograms
TjarkMiener May 22, 2026
708f88c
handle under/overflow bins and add staticmethod helper function for c…
TjarkMiener May 22, 2026
53b4ec1
polish description of tutorial with additional step for under/overfl…
TjarkMiener May 22, 2026
ea28d7d
fix docs
TjarkMiener May 22, 2026
65f3ab3
fix hist_from_container() and polish plotting tutorial and tests
TjarkMiener May 26, 2026
71210b6
polish changelog
TjarkMiener May 26, 2026
6a40c6a
make computation of stats and histograms private as they should not b…
TjarkMiener May 27, 2026
30550f1
only mask NaN values
TjarkMiener May 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changes/2996.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added a new class HistogramAggregator to compute histograms along a specified axis, and updated the documentation to reflect this new functionality. The documentation includes examples of how to use the HistogramsAggregator in practice. A helper function is implemented to create Hist objects from the container, so that users can use the Hist's built-in functionality.
Loading
Loading