我尝试使用循环创建一组表(答案数据框):
for (col in 1:ncol(answers)){
table(subset(answers,answers[,col]>6,select=answers[,col]),subset(answers,answers[,col]>6,select=c(clu)))
}
但我有一个错误:
Error in sort.list(y) : 'x' for 'sort.list' must be atomic.
我的代码有什么问题?我可以使用列名而不是索引吗?谢谢!