My question is simple, I have a dataframe and I groupby
the results based on a column and get the size like this:
df.groupby('column').size()
Now the problem is that I only want the ones where size is greater than X. I am wondering if I can do it using a lambda function or anything similar? I have already tried this:
df.groupby('column').size() > X
and it prints out some True and False values.