I have a dataframe with 3 columns.
I save with pd.to_csv(filename)
and then re-open it with
pd.read_csv(filename, index_col=False)
But I get a dataframe with 4 columns, with the left-most column called
Unnamed:0
that is actually just the row number. How can I read the csv without it?
Thanks!