I am trying to plot a histogram of some values in an array:
eg:-
input_hist=[0.5,0.5,0.66,0.83,0.92,0.92,0.93,0.97,0.98,0.98,0.98,0.99]
after issuing the pylab.hist(input_hist) statement these are the return values that i get.
(array([2, 0, 0, 1, 0, 0, 1, 0, 3, 5]), array([ 0.5 , 0.549, 0.598, 0.647, 0.696, 0.745, 0.794, 0.843,
0.892, 0.941, 0.99 ]), <a list of 10 Patch objects>)
Can someone please explain these return values , i did not understand them through the hist documentation.
Thanks in advance
Aditya