I have a problem with subset()function. How can I subset a factor of my dataframe by its number of observation?
NAME CLASS COLOR VALUE
antonio B YELLOW 5
antonio B BLUE 8
antonio B BLUE 7
antonio B BLUE 12
luca C YELLOW 99
luca B YELLOW 87
luca B YELLOW 98
giovanni A BLUE 48
I would like to obtain data where the three factors "NAME","CLASS" and "COLOR" compare at least three times in order to make a mean of VALUE. in this case I'll obtain:
NAME CLASS COLOR VALUE
antonio B BLUE mean
because antonio is the only with three observations for each factor
thank you so much
Nik
See Question&Answers more detail:os