dataframe get row by column value code example
Example 1: pandas get row from column value
df.loc[df['column_name'] == some_value]
Example 2: dataframe get row by name
row_data = df.loc[ 'a' , : ]
df.loc[df['column_name'] == some_value]
row_data = df.loc[ 'a' , : ]