Use visible column (#584)
for `desc()` example; the previous `arr_delay` column was invisible in the website rendering.
This commit is contained in:
parent
f8fcc86243
commit
e682fdc45a
|
@ -223,7 +223,7 @@ arrange(flights, year, month, day)
|
|||
Use `desc()` to re-order by a column in descending order:
|
||||
|
||||
```{r}
|
||||
arrange(flights, desc(arr_delay))
|
||||
arrange(flights, desc(dep_delay))
|
||||
```
|
||||
|
||||
Missing values are always sorted at the end:
|
||||
|
|
Loading…
Reference in New Issue