I am trying to convert a time series of daily data (only business days) contained in an xts object into a time series of weekly data. Specifically, I want the resulting time series to contain the end of week entries (meaning last business day of a week) of the original data. I've been trying to achieve this using the function to.weekly of the xts package.

In the discussion regarding another question (Wrong week-ending date using 'to.weekly' function in 'xts' package) the below example code achieved exactly what I need. However, when I run the code, to.weekly uses Mondays as a representative for the weekly data.

I am wondering which global setting might allow me to force to.weekly to use Friday as a week's representative.

Example code:

library(lubridate); library(xts)   
test.dates <- seq(as.Date("2000-01-01"),as.Date("2011-10-01"),by='days')
test.dates <- test.dates[wday(test.dates)!=1 & wday(test.dates)!=7] #Remove weekends
test.data <- rnorm(length(test.dates),mean=1,sd=2)
test.xts <- xts(x=test.data,order.by=test.dates)
test.weekly <- to.weekly(test.xts)
test.weekly[wday(test.weekly, label = TRUE, abbr = TRUE) != "Fri"]
link|improve this question
feedback

1 Answer

up vote 0 down vote accepted
test.dates <- test.dates[wday(test.dates)==6]
tail(wday(test.dates, label = TRUE, abbr = TRUE))
#[1] Fri Fri Fri Fri Fri Fri
#Levels: Sun < Mon < Tues < Wed < Thurs < Fri < Sat

OK. With the unstated requirements added to the problem:

require(timeDate)
require(lubridate)
 startDate <- as.Date("2000-01-03")
 endDate <- as.Date("2011-10-01")
 AllDays <- as.timeDate(seq(startDate, endDate, by="day"))
 is.wrk <- isBizday(AllDays, holidays = holidayNYSE(), wday = 1:5)
 is.wrkdt <- as.Date(names(is.wrk)[is.wrk])
 endweeks <- tapply(is.wrkdt, paste(year(is.wrkdt),week(is.wrkdt), sep = ""), max)
 head(as.Date(endweeks, origin="1970-01-01"))
#           1            2            3            4            5            6 
#"2011-01-06" "2011-01-13" "2011-01-20" "2011-01-27" "2011-02-03" "2011-02-10" 

So you want:

 as.Date(endweeks, origin="1970-01-01")
link|improve this answer
Thanks @DWin. I had thought of this solution. However, I need a solution that is able to deal with holidays and preferably choose the previous business day as week representative. I could cook up some custom code but was hoping that there is some implemented function for doing this. – Felix Nov 27 '11 at 18:15
I wasn't able to find holiday-defining functions in xts or in lubridate. (I thought xts would do so because my memory tells me it defines times for "financial centers".) The 'chron` package has something that one might think would do the trick, but it is only defined for 1992. – DWin Nov 28 '11 at 5:43
Genius. Thanks @DWin! – Felix Nov 28 '11 at 13:48
Sorry, found a mistake: endweeks <- tapply(is.wrkdt, week(is.wrkdt), max) Will fail, if the data stretches over more than one year. I guess you'd need to create a different index like yyyyww. – Felix Nov 28 '11 at 16:05
Using endweeks <- tapply(is.wrkdt, paste(year(is.wrkdt),week(is.wrkdt), sep = ""), max) works just fine for me. – Felix Nov 28 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.