I have a problem filtering a pandas dataframe.
city 
NYC 
NYC 
NYC 
NYC 
SYD 
SYD 
SEL 
SEL
...
df.city.value_counts()
I would like to remove rows of cities that has less than 4 count frequency, which would be SYD and SEL for instance.
What would be the way to do so without manually dropping them city by city?
 
     
     
     
    