Thread: csv reading
View Single Post
  #1  
Old 02-24-2006, 06:32 PM
kgarr kgarr is offline
Member
 
Join Date: Jan 2006
Location: Glassboro, NJ
Posts: 22
csv reading

I am using this command to import a csv file

Code:
temp = [[float(val) for val in row] for row in csv.reader(file('data.csv','rUb')) ]
this reads in my data as an array of the rows in my data. How do I change it so that my data is in an array of columns of my data? Mainly, I want to be able to easily find the max and min values of each column in my data after loaded into Vizard.
Reply With Quote