错误:函数aggregate()的未使用参数

时间:2013-03-20 18:54:39

标签: r

我正在尝试运行以下脚本:

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 list(total_score = m$Score) : unused argument(s) (total_score = m$Score)

我在其他5台机器上试过这个脚本,代码运行得很好;我只是不知道发生了什么。我有最新版本的R,这个功能不需要任何超出基数R的额外包。任何人的想法?

0 个答案:

没有答案