In [1]:
import csv
def theParser(filename):
theFile = open(filename)
theReader = csv.reader(theFile)
theData = list(theReader)
return theData
In [2]:
theParser('correlation_causality.csv')
In [ ]:
theParser('correlation-causality.csv')