I am trying to execute the following code chunk:
all_tripdata$date <- as.Date(all_tripdata$started_at)
The goal is to format date and aggregate ride data for each month, day, or year.
Instead, I got the following error message:
Error in charToDate(x) :
character string is not in a standard unambiguous format
Could someone please help me solve this probleme