thein lwin
0
Q:

dataframe change column names

>>> 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
3
df_new = df.rename(columns={'A': 'a'}) #change a from A
2
df.rename(columns={"A": "a", "B": "b", "C": "c"},
errors="raise", inplace=True)
9
#df.rename() will only return a new df with the new headers
#df = df.rename() will change the heders of the current dataframe 
df = df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"})
1
print(df.rename(columns={'A': 'a', 'C': 'c'}))
#         a   B   c
# ONE    11  12  13
# TWO    21  22  23
# THREE  31  32  33
1
#Pandas for Python

df.coloumns = ['A','B'] 
0
names(df)[1] <- paste("newName")
0

New to Communities?

Join the community