python df filter by value code example
Example 1: filter data in a dataframe python on a if condition of a value python by Testy Toucan on May 22 2020 Donate Comment
# filter rows in a dataframe by a condition on a column
df_filtered = df.loc[df['column'] == value]
Example 2: pandas column filter
filter = df['column']!= 0
df = df[filter]
Example 3: how to apply filters in pandas
# filter rows for year 2002 using the boolean expression
>gapminder_2002 = gapminder[gapminder.year.eq(2002)]
>print(gapminder_2002.shape)
(142, 6)