# sorting examples using the mtcars dataset
attach(mtcars)

# sort by mpg
newdata <- mtcars[order(mpg),]

# sort by mpg and cyl
newdata <- mtcars[order(mpg, cyl),]

#sort by mpg (ascending) and cyl (descending)
newdata <- mtcars[order(mpg, -cyl),]

detach(mtcars)

==============================

newdata <- mtcars[order(mtcars$mpg),]

==============================

dd[with(dd, order(-z, b)), ]
## sort by column Z and B ==============================
05-01 03:36