Initially, I have this dataframe:
I save this as a csv file by using:
df.to_csv('Frequency.csv')
The problem lies with when I try to read the csv file again with:
pd.read_csv("Frequency.csv")
The dataframe then looks like this:
Why is there an extra column added and why did the index change? I suppose it has something the do with the way how you should save the dataframe as a csv file, but I am not sure.

