You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently inconsistently defining whether our histograms are defined with hist.shape == (len(xbins),len(ybins)) or hist.shape == (len(xbins)-1,len(ybins)-1). The second defines the bin value at the center of the bin and is the convention followed by numpy.
The text was updated successfully, but these errors were encountered:
We are currently inconsistently defining whether our histograms are defined with
hist.shape == (len(xbins),len(ybins))
orhist.shape == (len(xbins)-1,len(ybins)-1)
. The second defines the bin value at the center of the bin and is the convention followed bynumpy
.The text was updated successfully, but these errors were encountered: