Opening a .csv file, all the _(underscores) are getting converted to +AF8-.
I can see that there is some kind of format issue but how to solve this.
I am getting the same error when I write a script to read a .csv file using pandas.
full_data = pd.read_csv('../data/full_data.csv', error_bad_lines=False)
print (full_data.info())
This is the output:
sdmax+AF8-posn 5530 non-null float64
sdmax_posn was read like that.
Thanks!