filter value in column pandas code example
Example 1: 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']
Example 2: pandas filter rows by value
>is_2002 = gapminder['year']==2002
>print(is_2002.head())
0 False
1 False
2 False
3 False
4 False
>gapminder_2002 = gapminder[is_2002]
>print(gapminder_2002.shape)
(142, 6)