Is there a way to have the dates in R as 3/31/2016 (not showing 03 for the month)?
Right now my code is:
dates <- seq(as.Date("2000-1-1"), as.Date("2016-10-1"), by="3 months") -1
dates <- format(dates, format = "%m/%d/%Y")
But the outcome is
[1] "12/31/1999" "03/31/2000" "06/30/2000" "09/30/2000"
Thank you