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?
|
1
|
|
|
|
|
|
If you have an array of integers and the max value isn't too large you can use numpy.bincount:
Edit: If you have float data, or data spread over a huge range you can convert it to integers by doing:
|
|||
|
|
|
A bin for every value sounds a bit strange but wouldn't
give a similar result? |
||
|
|
