I have a weighted histogram in python and I like to have all the data point of a particular bin.
I use this to plot the histogram:
c,n,x=plt.hist(e, bins=50, range=(-500, -400), weights=p, color='blue')
e
and p
both have 130k data points.
I like to get all the data points of a particular bin (lets say bit at -450).
You may try something like this:
Example:
Output->
Hope, this may help!