Re: [R] Help on Calculating day differences

2008-06-02 Thread Gabor Grothendieck
This was already answered by two people when you posted it the first time. On Mon, Jun 2, 2008 at 12:34 PM, Thorsten Muehge <[EMAIL PROTECTED]> wrote: > Hello R Freaks, > I calculate the difference in days between two events with the following > litte R expresseion: > > T1a <- strptime(T1,"%m/%d/%

[R] Help on Calculating day differences

2008-06-02 Thread Thorsten Muehge
Hello R Freaks, I calculate the difference in days between two events with the following litte R expresseion: T1a <- strptime(T1,"%m/%d/%y %H:%M:%S"); T2a <- strptime(T2,"%m/%d/%y %H:%M:%S"); T1b <- as.Date(T1a); T2b <- as.Date(T2a); days <- T2b-T1b; time <- T2a - T1a; In the project I would lik

Re: [R] Help on Calculating day differences

2008-05-28 Thread Gabor Grothendieck
See ?is.holiday in chron. You need to supply a .Holidays vector and then do this: library(chron) d1 <- Sys.Date() d2 <- Sys.Date() + 100 sq <- sq(d1, d2, by = "day") sum(!is.holiday(sq) & !is.weekend(sq)) # endpoints included The fCalendar package also has functionality in this area. On Wed, M

Re: [R] Help on Calculating day differences

2008-05-28 Thread Henrique Dallazuanna
Try this: # Without the weekend sum(!format(seq(T1a, T2a, by = "days"), "%w") %in% c("0","6")) On Wed, May 28, 2008 at 10:30 AM, Thorsten Muehge <[EMAIL PROTECTED]> wrote: > Hello R Freaks, > I calculate the difference in days between two events with the following > litte R expresseion: > > T1a

[R] Help on Calculating day differences

2008-05-28 Thread Thorsten Muehge
Hello R Freaks, I calculate the difference in days between two events with the following litte R expresseion: T1a <- strptime(T1,"%m/%d/%y %H:%M:%S"); T2a <- strptime(T2,"%m/%d/%y %H:%M:%S"); T1b <- as.Date(T1a); T2b <- as.Date(T2a); days <- T2b-T1b; time <- T2a - T1a; In the project I would lik