Answers for "r filter multiple columns then sum another column"

R
0

r sum based on two columns

aggregate(x$Frequency, by=list(Category=x$Category), FUN=sum)
  Category  x
1    First 30
2   Second  5
3    Third 34
Posted by: Guest on March-25-2020

Code answers related to "r filter multiple columns then sum another column"

Browse Popular Code Answers by Language