I have a date column in a dataframe in R with its usual format of yyyy-mm-dd and I am trying to turn in to a string with the format function
this is what I have so far
format(data_future$date, '%d/%m/%Y ')
but I get values like this "04/03/2021"
how do I remove the leading 0 from the day and month so the final result would look like this
"4/3/2021"
Thanks for the help