有没有一种按几列对data.frame进行排序的标准方法,但是减少或增加了?例如,您可能想按一个变量(递减)和下一个变量(递增)对data.frame进行排序。
是否有类似的东西:
mydf[ order(mydf$myvariable,mydf$myvariable2,decreasing=c(FALSE,TRUE)), ]
最佳答案
library(plyr)
mydf[with(mydf, order(myvariable, desc(myvariable2)), ]
# Or, a little less typing:
arrange(mydf, myvariable, desc(myvariable2))
关于r - orderBy随排序的增加和减少而变化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3316666/