Counting Letters

You can try doing something like this:

dataset %>%
  dplyr::mutate_if(is.character, nchar)

However, it's better to provide us with a reproducible example (reprex) illustrating your issue. Take a look at this guide, to see how to create one:

2 Likes