我见过this,但在我的情况下它不起作用。
我有一个如下数据集:
dt<-data.frame(A=c(F,F,F),B=(T,F,T),C=(T,T,F))
我想添加第四列,显示T的数量。所以,在我的情况下,它将是
count
2
1
1
我已经厌倦了这个解决方案
sum( as.vector(dt[1,]))
但它抱怨
Error in FUN(X[[i]], ...) :
only defined on a data frame with all numeric variables
我确定,我没有NA