0
JPJavier Pacheco
The code will rename all the column in the dataframe to the specified values.
0 Comments
import pandas as pd df.rename(columns = {'col1':'replace1', 'col2':'replace2', 'col3':'replace3'}, inplace = True)