how to return a value from the filter dataframe for using in an operation code example
Example: 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)