Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mhkeller
Created May 4, 2012 18:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhkeller/2596809 to your computer and use it in GitHub Desktop.
Save mhkeller/2596809 to your computer and use it in GitHub Desktop.
Order dataframe by columns
descending
df[with(df, order(-a)), ]
or
df[order(-df$col1),]
ascending
df[with(df, order(a)), ]
or
df[order(df$col1),]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment