pkgdown/mathjax-config.html

Skip to contents

Used inside arrange() to sort a column in descending order.

Usage

desc(x)

Arguments

x

A column name.

Value

A marker used by arrange().

Examples

f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> arrange(desc(mpg)) |> collect() |> head()
unlink(f)