pandas row by index code example
Example 1: pandas df by row index
indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]
Example 2: retrieve row by index pandas
rowData = dfObj.loc[ 'b' , : ]
indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]
rowData = dfObj.loc[ 'b' , : ]