I loaded a .csv file successfully. I picked some specific column to fillna with mean that reads like this on spreadsheet "Temperature Difference or Airflow Temperature" but should actually read like this "Temperature Difference or Airflow Temperature". I keep getting errors that call back to that row.
What I have done: Edited the csv columns and taken out the cross sign but that just gives me a Unicode Decode error
For example: output.csv contains the following columns Temperature Difference  and Pressure Difference with some null values.
data.columns = 'Temperature Difference','Pressure Difference'
with no funny character in it.
data['Temperature Difference'].fillna(data['Temperature Difference'].mean(), inplace=True)
gives KeyError: 'Temperature Difference'