Answers for "rename columns pandas as new dataframe"

65

rename columns pandas

df.rename(columns={'oldName1': 'newName1',
                   'oldName2': 'newName2'},
          inplace=True, errors='raise')
# Make sure you set inplace to True if you want the change
# to be applied to the dataframe
Posted by: Guest on March-13-2020
8

rename df column

import pandas as pd
data = pd.read_csv(file)
data.rename(columns={'original':'new_name'}, inplace=True)
Posted by: Guest on June-02-2020

Code answers related to "rename columns pandas as new dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language