Hi,
I have a csv file im reading and this is what I have done so far:
import csv
filename='C:\Users\temperature.csv'
with open(filename, 'rb') as csvf:
reader = csv.reader(csvf)
for row in reader:
print row
the result is as following:
['Depth (m);15.08.2012 15:39:09;15.08.2012 16:09:10;15.08.2012 16:39:10;15.08.2012 16:43:36']
['0;53.218;52.804;52.865;51.202']
['0.128;53.107;52.709;52.414;52.141;']
['1.143;52.205;51.88;51.664;51.234']
['2.159;51.026;50.846;50.842;51.258']
['3.174;50.061;50.055;50.457;50.19']
['4.189;49.092;49.31;49.586;50.068']
['5.205;48.611;49.08;49.313;49.81']
My problem is making an x array out of the depths column, and y out of time and z as the temperature. I am not very familiar with csv files:P Hope you can give me a small hint:)