我在下面有一些代码,我希望能够将它们组合成一张大表。这可能吗?
cbind(sum(michelson[michelson$Expt==1,]$Speed),
mean(michelson[michelson$Expt==1,]$Speed),
max(michelson[michelson$Expt==1,]$Speed))
cbind(sum(michelson[michelson$Expt==2,]$Speed),
mean(michelson[michelson$Expt==2,]$Speed),
max(michelson[michelson$Expt==2,]$Speed))
cbind(sum(michelson[michelson$Expt==3,]$Speed),
mean(michelson[michelson$Expt==3,]$Speed),
max(michelson[michelson$Expt==3,]$Speed))
cbind(sum(michelson[michelson$Expt==4,]$Speed),
mean(michelson[michelson$Expt==4,]$Speed),
max(michelson[michelson$Expt==4,]$Speed))
cbind(sum(michelson[michelson$Expt==5,]$Speed),
mean(michelson[michelson$Expt==5,]$Speed),
max(michelson[michelson$Expt==5,]$Speed))
我会感谢一些专家的帮助!谢谢