Select records having frequency count greater than N
Hello fellow JMPers,
I have a dataset with a categorical variable X. I want to select rows where the frequency count of variable X is greater than a threshold. For example I only want to see rows where the count is 5 or higher. There could be 100-200 different values of X, so a simple distribution will be too busy to do a graphical selection from.
I've tried various things:
1. Tabulation where I p...