Fixed Typo (#317)
This commit is contained in:
parent
a933c5f286
commit
d800a19a83
|
@ -483,7 +483,7 @@ It's natural to use `str_count()` with `mutate()`:
|
||||||
df %>%
|
df %>%
|
||||||
mutate(
|
mutate(
|
||||||
vowels = str_count(word, "[aeiou]"),
|
vowels = str_count(word, "[aeiou]"),
|
||||||
consontants = str_count(word, "[^aeiou]")
|
consonants = str_count(word, "[^aeiou]")
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue