The lubridate package has good functions for this. if the dates are currently shown in m/d/y format, the you could do
library(lubridate)
month1$started_at <- mdy(month1$started_at)
There is a dmy() function if they are in d/m/y format.
For more detailed help, please give more details about the date format.