标签: r dataframe sum
我有这个基于两个向量的data.frame:
V<-c(1,2,3,4,5) X<-c(2,3,1,1,2)
我想基于X列值的单个总和创建一个新列(AC.X)。即,
AC.X<- c(2+3+1+1+2,3+1+1+2,1+1+2,1+2,2)
谢谢!