how to the change the column name of the pandas series code example
Example 1: rename df column
import pandas as pd
data = pd.read_csv(file)
data.rename(columns={'original':'new_name'}, inplace=True)
Example 2: change column names pandas
df.columns = ['A','B']