-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Labels
Description
The ROOT pythonization of TH1 decided to set the kind of the histogram to COUNT if unweighted, and MEAN if weighted (see here in ROOT).
In uproot, the kind.MEAN is only used for TProfile histograms, otherwise it's always a kind.COUNT (see here in uproot).
I was wondering why is there a difference in treatment between ROOT and uproot? kind.MEAN has a different treatment of variance (see UHI doc), so I was wondering which definition was correct between the two package?