Answers for "get row index pandas"

2

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, :]
Posted by: Guest on April-10-2021
0

dataframe get index name

In [7]: df.index.name
Out[7]: 'Index Title'

In [8]: df.index.name = 'foo'

In [9]: df.index.name
Out[9]: 'foo'

In [10]: df
Out[10]: 
         Column 1
foo              
Apples          1
Oranges         2
Puppies         3
Ducks           4
Posted by: Guest on October-07-2020
2

retrieve row by index pandas

rowData = dfObj.loc[ 'b' , : ]
Posted by: Guest on April-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language