Hello I am trying to use this Fips brush to filter my dataset. It looks like it outputs a set of values. I tried converting it into an array of values and then filtering my dataset by the array.
filteredFips = yearlyData.filter(({county_fips}) => county_fips === fips)
But I guess you can’t filter by an array of values. What is the best way to work with this Fips brush to filter my data?
Here is my notebook. Sorry in advance if this is an easy question.