-3

以下に、1 つの大きなテーブルに結合できるようにしたいコードがいくつかあります。これは可能ですか?

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))

一部の専門家からの助けをいただければ幸いです。ありがとう

4

1 に答える 1