vote up 0 vote down star
1

I have a very long list in a numpy.array. I want to generate a histogram for it. However, Numpy's built in histogram requires a pre-defined number of bins. What's the best way to generate a full histogram with one bin for each value?

flag

2 Answers

vote up 3 vote down check

If you have an array of integers and the max value isn't too large you can use numpy.bincount:

hist = dict((key,val) for key, val in enumerate(numpy.bincount(data)) if val)

Edit: If you have float data, or data spread over a huge range you can convert it to integers by doing:

bins = numpy.unique(data)
bincounts = numpy.bincount(numpy.digitize(data, bins) - 1)
hist = dict(zip(bins, bincounts))
link|flag
thanks. didn't know about bincount() – Nathan Fellman Sep 14 at 9:06
vote up 0 vote down

A bin for every value sounds a bit strange but wouldn't

bins=a.max()-a.min()

give a similar result?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.