filter dataset by numerical 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: pandas filter
#To select rows whose column value is in list
years = [1952, 2007]
gapminder.year.isin(years)