I needed to make the values in a column consistent and was struggling to add in the base R function of toupper
in a dplyr pipeline. I found the str_to_upper(string, locale = "en")
function in the stringr package and made it work.
Kevin
2021-12-17
I needed to make the values in a column consistent and was struggling to add in the base R function of toupper
in a dplyr pipeline. I found the str_to_upper(string, locale = "en")
function in the stringr package and made it work.