Answers for "data.rename(columns={'0':'label'}, inplace=True)"

15

pandas rename column

df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"}, inplace=True)
Posted by: Guest on June-09-2020
0

name columns pandas

>gapminder.columns = ['country','year','population',
                     'continent','life_exp','gdp_per_cap']
Posted by: Guest on June-08-2020

Code answers related to "data.rename(columns={'0':'label'}, inplace=True)"

Python Answers by Framework

Browse Popular Code Answers by Language