我正在尝试运行以下脚本:
m <- matrix(c(1,1,2,1,3,12,14,16,30,21), nrow=5, ncol=2, byrow=FALSE);
colnames(m) <-c("Group","Score");
m<-data.frame(m)
head(m)
sum1 <- aggregate(list(total_score=m$Score), by=list(group=m$Group), FUN=sum)
sum1
但是,当我运行脚本时,控制台返回以下错误:
Error in as.data.frame.default(x) :
cannot coerce class '"function"' into a data.frame
我以前从未见过此错误....任何人对出了什么问题有任何想法?