Sort data.frames/matrices/vectors
sort_asc sorts in ascending order and sort_desc sorts in
descending order. .sort_asc/.sort_desc are versions for working
with default_dataset.
sort_asc(data, ..., na.last = FALSE) .sort_asc(..., na.last = FALSE) sort_desc(data, ..., na.last = TRUE) .sort_desc(..., na.last = TRUE)
data |
data.frame/matrix/vector |
... |
character/numeric or criteria/logical functions (see criteria). Column names/numbers for data.frame/matrix by which object will be sorted. Names at the top-level can be unquoted (non-standard evaluation). For standard evaluation of parameters you can surround them by round brackets. See examples. Ignored for vectors. |
na.last |
for controlling the treatment of NAs. If TRUE, missing values in the data are put last; if FALSE, they are put first; if NA, they are removed. |
sorted data
data(mtcars)
sort_asc(mtcars, mpg)
sort_asc(mtcars, cyl, mpg) # by two column
# same results with column nums
sort_asc(mtcars, 1)
sort_asc(mtcars, 2:1) # by two column
sort_asc(mtcars, 2, 1) # by two column
# call with parameter
sorting_columns = c("cyl", "mpg")
sort_asc(mtcars, (sorting_columns))Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.