desc | R Documentation |
Arrange in descending order. Can be used inside of arrange()
desc(x)
x |
Variable to arrange in descending order |
df <- data.table(
a = 1:3,
b = 4:6,
c = c("a", "a", "b")
)
df %>%
arrange(c, desc(a))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.