Order a data frame by its colums.
arrange(df, ...)
df |
data frame to reorder |
... |
expressions evaluated in the context of |
order
for sorting function in the base package
# sort mtcars data by cylinder and displacement mtcars[with(mtcars, order(cyl, disp)), ] # Same result using arrange: no need to use with(), as the context is implicit # NOTE: plyr functions do NOT preserve row.names arrange(mtcars, cyl, disp) # Let's keep the row.names in this example myCars = cbind(vehicle=row.names(mtcars), mtcars) arrange(myCars, cyl, disp) # Sort with displacement in descending order arrange(myCars, cyl, desc(disp))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.