I have a dataset like this:
ISIN,"MIC","Datum","Open","Hoog","Laag","Close","Number of Shares","Number of Trades","Turnover","Valuta" NL0011821202,"Euronext Amsterdam Brussels","04/09/2017","14.82","14.95","14.785","14.855","7482805","6970","111345512.83","EUR" NL0011821202,"Euronext Amsterdam Brussels","05/09/2017","14.91","14.92","14.585","14.655","15240971","12549","224265257.14","EUR" NL0011821202,"Euronext Amsterdam Brussels","07/09/2017","14.69","14.74","14.535","14.595","15544695","15817","227478163.74","EUR" However I can't read the file in correctly with pd.read_csv('filename.csv') I've tried all kinds of combinations like:
sep='"', delimiter="," But with no luck at all! I want the first line to be the columns and the quote characters and comma to be removed.
How do I go about this efficiently?
pd.read_csv('filename.csv'), is possible share real sample file with 3 rows, e.g. by dropbox, gdocs or similar?pd.read_csv('filename.csv', sep=',', quotechar='"')?pandas 0.23.4