See example csv file below:
A,B,C
d,e,f
g,h,i
The first row with the capital letters are my headings.
I tried this:
df = pd.read_csv("example.csv", header=0, sep=",", index_col=0, parse_dates=True)
And the data frame that is created looks like this with the headings messed up.
B C
A
d e f
g h i
Anyone know why or how I can fix this manually?