delete column headers in dataframe python code example
Example 1: python dataframe remove header
new_header = df.iloc[0] #grab the first row for the header
df = df[1:] #take the data less the header row
df.columns = new_header #set the header row as the df header
Example 2: how to delete a column in pandas dataframe
delete column from pandas data frame