I have data similar to these:
data <- data.frame(x1=rexp(10,2),y1=rnorm(10,1),x2=rexp(10,2),y2=rnorm(10,1),x3=rexp(10,2),y3=rnorm(10,1),x4=rexp(10,2),y4=rnorm(10,1))
I would like to order all y1,y2...
variables in increasing order.
I have tried this among others:
data[with(data,order(y1,y2,y3,y4,decreasing=FALSE)), ]
There is number of SO contribution for example here about order, yet I cannot make it work.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…