I have a dataframe with multiple columns out of which one column has city names with first letter in uppercase. I want to see the all city names in this particular with lowercase letters and an updated data frame with all the existing columns.
Ex-
colA,colB,colC
Australia,Albany,23
Australia,Sydney,56
India,Delhi,67
India,Guntur,89
I want output as
colA,colB,colC
Australia,albany,23
Australia,sydney,56
India,delhi,67
India,guntur,89
I tried using 'dplyr::mutate_each' function but ended up like following
colB
albany
sydney
delhi
guntur