Answers for "pandas reading 1st row as column names"

2

make first row column names 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
Posted by: Guest on April-23-2020
6

pandas return first row

df_test.iloc[0]
or
df_test['someColumnName'].iloc[0]
Posted by: Guest on February-25-2021

Code answers related to "pandas reading 1st row as column names"

Python Answers by Framework

Browse Popular Code Answers by Language