Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

make first row columns pandas

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #row #columns #pandas
ADD COMMENT
Topic
Name
3+9 =