I saved a Pandas Dataframe to a csv file. If import it in Azure AutoML it looks like this:
It looks fine if I open it with Excel:
I export the dataframe with this line:
df.to_csv(r'*static_path*/output/measurements.csv')
Attempted Workarounds:
- Open in Excel and resave as csv
- Open in Excel and resave as tsv
- Switch around Encoding options in AzureML
- Created the csv and uploaded it to blob storage with the guide from the Microsoft Docs Create a dataset from pandas dataframe