vote up 2 vote down star
1

I'm trying to create a simple probability density function(pdf) graph using data from one column of a csv file using csv dictreader, matplotlib and numpy...

Is there an easy way to use CSV DictReader combined with numpy arrays? Below is code that doesn't work. The error message is TypeError: len() of unsized object, which I'm guessing is related to the fact that my data is not in numpy array format? Also my data has negative and positive numbers. Thanks in advance!

import easygui
import csv
import scipy.stats
from numpy import*
from pylab import*


filename= easygui.fileopenbox(msg='Altitude outlier graph', title='select file',  filetypes=['*.csv'], default='X:\\')
alt_file=open(filename)    

x=[]
for row in csv.DictReader(alt_file):
    x.append(float(row['Dist_90m(nmi)']))

a=scipy.stats.pdf_moments(x)

prob, bins, patches= hist(a, 10,align='left',facecolor='green')

ylabel('probability density function')
show()
flag

0% accept rate
1  
The error message has a traceback, it shows the exact line of code. Please provide the entire error message, including the traceback to the exact line of code that failed. – S.Lott Aug 25 at 16:10

2 Answers

vote up 0 vote down

Thanks for all the help!! The following code produces a graph of the probability density function: I'm still having some issues formating it but I think this is a good start.

import easygui
import csv
import scipy.stats
import numpy
from pylab import*

filename= easygui.fileopenbox(msg='Altitude outlier graph', title='select file', filetypes=['*.csv'], default='X:\\herring_schools\\')
alt_file=open(filename)    

a=[]
for row in csv.DictReader(alt_file):
    a.append(row['Dist_90m(nmi)'])
y= numpy.array(a, float)    

pdf, bins, patches=hist(y, bins=6, align='left',range=None, normed=True)
ylabel('probability density function')
xlabel('Distance from 90m contour line(nm)')
ylim([0,1])
show()
link|flag
vote up 4 vote down

The line

a=scipy.stats.pdf_moments(x)

"Return[s] the Gaussian expanded pdf function given the list of central moments (first one is mean)."

That is to say, a is a function, and you must take its value somehow.

So I modified the line:

prob, bins, patches= hist([a(i/100.0) for i in xrange(0,100,1)], 10, align='left', facecolor='green')

And produced this graph with my sample data.

Now my statistics are pretty rusty, and I am not sure if you normally take a pdf over 0-1, but you can figure it out from there.

If you do need to go over a range of floating points, range and xrange do not produce floats, so one easy way around that is to generate large numbers and divide down; hence a(i/100.0) instead of a(i) for i in xrange(0, 1, 0.01).

sample

link|flag
1  
Good, but use numpy.arange for the last issue you mention -- it does just fine with floating point numbers too!-) – Alex Martelli Aug 25 at 17:21
You can also use numpy.r_ e.g., r_[2:3:5j] -> array([ 2. , 2.25, 2.5 , 2.75, 3. ]), so in your case r_[:1:100j]. – J.F. Sebastian Aug 25 at 20:56

Your Answer

Get an OpenID
or

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