pandas select row by index
#for single row
df.loc[ index , : ]
# for multiple rows
indices = [1, 20, 33, 47, 52 ]
new_df= df.iloc[indices, :]
pandas select row by index
#for single row
df.loc[ index , : ]
# for multiple rows
indices = [1, 20, 33, 47, 52 ]
new_df= df.iloc[indices, :]
how to get a row from a dataframe in python
df.iloc[[index]]
pandas return row
1. Selecting data by row numbers (.iloc)
# myrow = data.iloc[<row selection>]
myrow = data.iloc[7]
myrow = data.iloc[0:9]
2. Selecting data by label or by a conditional statement (.loc)
# myrow = data.loc[<row selection.]
myrow = data.loc['University ABC']
3. Selecting in a hybrid approach (.ix) (now Deprecated in Pandas 0.20.1)
# Works like a .loc but also accepts integers - may lead to unexpected results
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us