Is there a simple R idiom for getting a vector of the days in a given year? I can do the following which does ok... except for leap years:

dtt <- as.Date( paste( as.character(year), "-1-1", sep="") ) + seq( 0,364 )

I could, obviously, add a line to filter out any values in (year + 1) but I'm guessing there's a much shorter way to do this.

link|improve this question

feedback

3 Answers

up vote 13 down vote accepted

What about this:

R> length(seq( as.Date("2004-01-01"), as.Date("2004-12-31"), by="+1 day"))
[1] 366
R> length(seq( as.Date("2005-01-01"), as.Date("2005-12-31"), by="+1 day"))
[1] 365
R> 

This uses nuttin' but base R to compute correctly on dates to give you your vector. If you want higher-level operators, look e.g. at lubridate or even my more rudimentary RcppBDT which wraps parts of the Boost Time_Date library.

link|improve this answer
Just add a -1 after the second as.Date. – James Aug 24 '11 at 14:28
Nice one, had not thought of that. That will indeed fix it. Come to think about it, I could just have used 20xx-12-31 anyway. – Dirk Eddelbuettel Aug 24 '11 at 14:30
feedback

Using Dirk's guidance I've settled on this:

getDays <- function(year){
     seq(as.Date(paste(year, "-01-01", sep="")), as.Date(paste(year, "-12-31", sep="")), by="+1 day")
}
link|improve this answer
3  
I appreciate your generosity in not accepting your own answer :) – Dirk Eddelbuettel Aug 24 '11 at 15:03
1  
I'm a magnanimous kinda guy ;) – JD Long Aug 24 '11 at 15:06
feedback

I'd be interested to know if it would be faster to invert the sequencing and the casting as.Date:

# My function getDays
getDays_1 <- function(year) {
  d1 <- as.Date(paste(year, '-01-01', sep = ''));
  d2 <- as.Date(paste(year, '-12-31', sep = ''));
  as.Date(d1:d2, origin = '1970-01-01');
};

# other getDays
getDays_2 <- function(year) {      
  seq(as.Date(paste(year, '-01-01', sep='')), 
      as.Date(paste(year, '-12-31', sep='')), 
      by = '+1 day');
};

test_getDays_1 <- function(n = 10000) {
  for(i in 1:n) {
    getDays_1(2000);
  };
};

test_getDays_2 <- function(n = 10000) {
  for(i in 1:n) {
    getDays_2(2000);
  };
};

system.time(test_getDays_1());
# user  system elapsed 
# 4.80    0.00    4.81 

system.time(test_getDays_2());
# user  system elapsed 
# 4.52    0.00    4.53 

I guess not . . . it appears that sequencing Date objects is slightly faster than convert a vector of integers to Dates

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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