我正在努力把一栏放在我的数据集中。 下面的例子可以说明我想要重新排序的方式:
我有以下数据:
dd = data.frame("AssignedA"=1:2, "AverageA"=1, "AssignedB"=1, "AverageB"=1,
"AssignedC"=1, "AverageC"=1, "ValueA"=1, "ValueB"=1, "ValueC"=1)
简而言之,我希望以下列方式订购各栏:
签名A - 签名B - 签名C - 平均A - 平均C-平均价A 价值B - 价值C
How to do this? I couldn t find the solution in questions posted earlier.