I have a problem filtering a pandas dataframe.
pandas
city NYC NYC NYC NYC SYD SYD SEL SEL ... df.city.value_counts()
I woul
Another solution :
threshold=3 df['Count'] = df.groupby('City')['City'].transform(pd.Series.value_counts) df=df[df['Count']>=threshold] df.drop(['Count'], axis = 1, inplace = True) print(df) City 0 NYC 1 NYC 2 NYC 3 NYC