I've written a script to compute large csv files in dimensions: 27000 rows x 22 column. How can I read in the CSV file in order to use it in matplotlib in a scattered plot like the one in this thread?
The concept of generating a scatter plot is understood. Attempts have been made to parse csv file by e.g.:
data=csv.reader(open('some_file.csv, 'rb'), delimiter='|', quotechar='"')
but without success.
Here is a quick solution
def getColumn(filename, column):
results = csv.reader(open(filename), delimiter="\t")
return [result[column] for result in results]
and then you can use it like this
time = getColumn("filename",0)
volt = getColumn("filaname",1)
plt.figure("Time/Volt")
plt.xlabel("Time(ms)")
plt.ylabel("Volt(mV)")
plt.plot(time,volt)