1 | initial version |
You can also use Python's csv
module. If your data is in a .csv
file and you have uploaded it to the notebook, you can do something like:
import csv
data =list( csv.reader(open(DATA+'DataFile.csv','rU')) )
data = map(lambda x: [float(x[0]),float(x[1])],data)
list_plot(data)