reference columns by index pandas code example
Example 1: dataframe get row by name
row_data = df.loc[ 'a' , : ]
Example 2: isolate row based on index pandas
dfObj.iloc[: , [0, 2]]
Example 3: retrieve row by index pandas
rowData = dfObj.loc[ 'b' , : ]