I want to find the nearest lowest week for each date in df$Upload_Date by referencing a series of weeks called 'weeks'.
head(df$Upload_Date)
#[1] "2014-09-25" "2014-09-25" "2014-09-25" "2014-11-06" "2014-09-25" "2014-09-25"
I also have a list of weeks that I will be using in a report.
> weeks
[1] "2014-08-01" "2014-08-08" "2014-08-15" "2014-08-22" "2014-08-29" "2014-09-05" "2014-09-12" "2014-09-19" "2014-09-26"
[10] "2014-10-03" "2014-10-10" "2014-10-17" "2014-10-24" "2014-10-31" "2014-11-07" "2014-11-14"
The first value in df$Upload_Date is "2014-09-25. The nearest lower week in "weeks" is "2014-09-19". So I want to create a new column called "df$report_week" which will assign "2014-09-19" for the row with "2014-09-25".
I've tried setting the following variables (not sure if this will be helpful or not):
upload_day <- as.POSIXlt(df$Upload_Date[1])$yday
> upload_day
[1] 267
report_days <- as.POSIXlt(weeks)$yday
> report_days
[1] 212 219 226 233 240 247 254 261 268 275 282 289 296 303 310 317
Any ideas here?
You may try
cut
and use your "week" vector asbreaks
:Also note the 'built-in'
breaks
"weeks"
, where weeks start on Monday (defaultstart.on.monday = TRUE
), in contrast to your 'start on Friday-weeks':