I have a simple table in R named Tag_Count
:
Tag 1 freq
Cookies 1
Cakes 2
Burritos 5
I want to remove all rows where freq value is less than 3. I tried:
Tag_Count_2 <- Tag_Count[Tag_Count$freq <= 3,]
Tag_Count_2 <- Tag_Count[freq < 4]
But neither worked.