Answers for "two column and sum of one column in r"

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 "two column and sum of one column in r"

Browse Popular Code Answers by Language