Answers for "rename col panda"

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
10

pandas dataframe column rename

>>> df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
>>> df.rename(columns={"A": "a", "B": "c"})
   a  c
0  1  4
1  2  5
2  3  6
Posted by: Guest on February-29-2020
0

rename column in dataframe

df.rename({"current": "updated"}, axis=1, inplace=True)
print(df.dtypes)
Posted by: Guest on July-25-2021
0

renaming column in dataframe pandas

df.rename({'a': 'X', 'b': 'Y'}, axis=1, inplace=True)
df

   X  Y  c  d  e
0  x  x  x  x  x
1  x  x  x  x  x
2  x  x  x  x  x
Posted by: Guest on March-29-2021
0

dataframe rename column

df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})

# Option 1
df.rename({"A": "a", "B": "c"}, axis=1)

# Option 2
df.rename(columns={"A": "a", "B": "c"})

# Result
   a  c
0  1  4
1  2  5
2  3  6
Posted by: Guest on March-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language