You can view the current dataframe using
data.head()
if that returns 'Unnamed: 0' as the column title, you can rename it in the following way:
data.rename( columns={'Unnamed: 0':'new column name'}, inplace=True )
You can view the current dataframe using
data.head()
if that returns 'Unnamed: 0' as the column title, you can rename it in the following way:
data.rename( columns={'Unnamed: 0':'new column name'}, inplace=True )