filter columns pandas dataframe code example
Example 1: pandas column filter
filter = df['column']!= 0
df = df[filter]
Example 2: 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)
Example 3: pandas filter
>continents = ['Asia','Africa', 'Americas', 'Europe']
>gapminder_Ocean = gapminder[~gapminder.continent.isin(continents)]
>gapminder_Ocean.shape
(24,6)