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.