It seems the Internet has not answered this question for R yet:
If I have a date. Say the 20th of march: as.Date("2015-03-20") how do I get, in R, the previous Sunday? i.e., in the above example, as.Date("2015-03-15").
Reading through the lubridate documentation, I found an answer.
library(lubridate)
date <- as.Date("2015-03-20")
previous_sunday <- floor_date(date, "week")
To get the previous monday, tues, etc. just add the required number of days: (for monday)
day(date)<-day(date)+1
and substract 7 days if it is greater than the original date.
Here is one approach:
d <- as.Date("2015-03-18")
prev.days <- seq(d-6,d,by='day')
prev.days[weekdays(prev.days)=='Sunday']
# [1] "2015-03-15"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With