Last chance! 50% off unlimited learning
Sale ends in
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.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.
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
# NOT RUN {
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))
# }
Run the code above in your browser using DataLab