Fix typo in 19.4 (#1585)

This commit is contained in:
Michael Grund 2023-10-25 15:26:48 +02:00 committed by GitHub
parent 8ecbf4ee2f
commit f1d8f1f5d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ And we want to count the number of smokers with `dplyr::count()`:
health |> count(smoker)
```
This dataset only contains non-smokers, but we know that smokers exist; the group of non-smoker is empty.
This dataset only contains non-smokers, but we know that smokers exist; the group of non-smokers is empty.
We can request `count()` to keep all the groups, even those not seen in the data by using `.drop = FALSE`:
```{r}