Answers for "get first column of dataframe pandas"

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
1

pandas print first column

df = pd.DataFrame({"Letters": ["a", "b", "c"], "Numbers": [1, 2, 3]})
first_column = df.iloc[:, 0]
Posted by: Guest on April-13-2021
1

get only first 10 columns pandas

df.iloc[:, : 50]
Posted by: Guest on December-07-2020
-1

make first row column names pandas

df.rename(columns=df.iloc[0])
Posted by: Guest on April-23-2020
-1

make first row column names pandas

In [24]: df.drop(df.index[1])
Out[24]: 
1 foo bar baz
0   1   2   3
2   4   5   6
Posted by: Guest on April-23-2020

Code answers related to "get first column of dataframe pandas"

Python Answers by Framework

Browse Popular Code Answers by Language