df.sort | R Documentation |
This function arranges a data frame in increasing or decreasing order according to one or more variables.
df.sort(x, ..., decreasing = FALSE, check = TRUE)
x |
a data frame. |
... |
a sorting variable or a sequence of sorting variables which are specified without
quotes |
decreasing |
logical: if |
check |
logical: if |
Returns data frame x
sorted according to the variables specified in ...
, a matrix will
be coerced to a data frame.
Takuya Yanagida takuya.yanagida@univie.ac.at
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
Knuth, D. E. (1998) The Art of Computer Programming, Volume 3: Sorting and Searching (2nd ed.). Addison-Wesley.
df.duplicated
, df.merge
,
df.move
, df.rbind
,
df.rename
,
df.subset
dat <- data.frame(x = c(5, 2, 5, 5, 7, 2),
y = c(1, 6, 2, 3, 2, 3),
z = c(2, 1, 6, 3, 7, 4))
# Example 1: Sort data frame 'dat' by "x" in increasing order
df.sort(dat, x)
# Example 2: Sort data frame 'dat' by "x" in decreasing order
df.sort(dat, x, decreasing = TRUE)
# Example 3: Sort data frame 'dat' by "x" and "y" in increasing order
df.sort(dat, x, y)
# Example 4: Sort data frame 'dat' by "x" and "y" in decreasing order
df.sort(dat, x, y, decreasing = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.