Answers for "set columns pandas"

15

pandas rename column

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

how to change the columns of a dataframe in python

new_columns = {"col1": "1st", "col2": "2nd"}
df_new = df.rename(columns=new_columns)

"""
 col1 | col2 | col3            1st | 2nd | col3
   a  |   d  |	 g              a  |  d  |  g
   b  |   e  |   h		=>      b  |  e  |  h
   c  |   f  |   i              c  |  f  |  i
"""
Posted by: Guest on March-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language