I have a dataframe that has many addresses but they are all in uppercase and I want them to be in lower case but keeping the first letter of the word as an upper case.
I use the function lowercase
but the whole word turns lower case
in this case
tolower("231 MATTIE'S WAY")
[1] "231 mattie's way"
but I need it like
"231 Matties's Way"
Any help on how I could do that?