Learn R Programming

poorman (version 0.2.6)

desc: Descending order

Description

Transform a vector into a format that will be sorted in descending order. This is useful within arrange().

Usage

desc(x)

Value

A vector of the same length as x.

Arguments

x

A vector to transform.

Examples

Run this code
desc(1:10)
desc(factor(letters))

first_day <- seq(as.Date("1910/1/1"), as.Date("1920/1/1"), "years")
desc(first_day)

mtcars %>% arrange(desc(mpg))

Run the code above in your browser using DataLab