I've got a df just like this:
df = data.frame(longitude = c('-235.969',
'-23.596.244',
'-2.359.186'))
It´s an example of one column of geocode I'm trying to convert to something like this
new_df = data.frame(longitude = c('-23.5969', '-23.596244', '-23.59186'))
The main purpose is to use the geocode in an leaflet application.