この入力をどのように変更しますか(時間、入力、出力、ファイルの順序で):
Time In Out Files
1 2 3 4
2 3 4 5
この出力に(シーケンス:time、out、in、files)?
Time Out In Files
1 3 2 4
2 4 3 5
ダミーのRデータは次のとおりです。
table <- data.frame(Time=c(1,2), In=c(2,3), Out=c(3,4), Files=c(4,5))
table
## Time In Out Files
##1 1 2 3 4
##2 2 3 4 5