how to subset dataframe based on column value code example

Example 1: only keep rows of a dataframe based on a column value

df.loc[df['column_name'] == some_value]

Example 2: panda - subset based on column value

import pandas as pd
import numpy as np
df = pd.DataFrame({'A': 'foo bar foo bar foo bar foo foo'.split(),
                   'B': 'one one two three two two one three'.split(),
                   'C': np.arange(8), 'D': np.arange(8) * 2})
print(df)
sub_df = df.loc[df['A'] == 'foo'] # Subset based on specific A value