I have data in this format:
DAX 20150728 11173.910156
DAX 20150727 11056.400391
DAX 20150724 11347.450195
DAX 20150723 11512.110352
If I try to read the data with print pd.read_csv('DAX.csv'), I get this: [6246 rows x 1 columns]. Obviously pandas can not manage to read the three columns of data and get all the data in one column.
How can I fix this?