Skip to content Skip to sidebar Skip to footer

Pandas: Rename Axis In Df

I have a df which looks like this: Column 1 Channel Apples 1.0 Oranges 2.0 Puppies 3.0 Ducks 4.0 I would like

Solution 1:

This is kind of a hack to get you what you eventually wanted it to look like.

df = pd.read_csv(data, sep='\s{2,}', index_col='Channel', engine='python')
df

Image

df_excel_format = df.rename_axis('Channel', axis=1)
del(df_excel_format.index.name)
df_excel_format

Image

Post a Comment for "Pandas: Rename Axis In Df"