Histogram of floating point values.

2008-07-25 Thread aditya shukla
=array(data) pylab.hist(input_hist,bins=0.1) and this is the error that i am getting *(array([], dtype=int32), array([ 0.5]), a list of 0 Patch objects)* does this mean that i cannot plot a histogram of floating point values ? or is there a way around Thanks in advance Aditya -- http

Re: Histogram of floating point values.

2008-07-25 Thread Terry Reedy
pylab import * input_hist=array(data) pylab.hist(input_hist,bins=0.1) and this is the error that i am getting _*(array([], dtype=int32), array([ 0.5]), a list of 0 Patch objects)*_ does this mean that i cannot plot a histogram of floating point values ? or is there a way around Ask the pylab

Re: Histogram of floating point values.

2008-07-25 Thread Kurt Smith
* import numpy import pylab from numpy import * from pylab import * input_hist=array(data) pylab.hist(input_hist,bins=0.1) and this is the error that i am getting (array([], dtype=int32), array([ 0.5]), a list of 0 Patch objects) does this mean that i cannot plot a histogram of floating