Replace deprecated summarise_each() for summarise_all() (#824)

This commit is contained in:
Maria Paula Caldas 2020-10-03 16:43:52 +02:00 committed by GitHub
parent 9eb33d8dcc
commit c6e0a7a990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ df %>%
```{r, eval = FALSE}
mtcars %>%
group_by(cyl) %>%
summarise_each(funs(list))
summarise_all(list(list))
```
## Simplifying list-columns