Re: [R] Generating Sequence of Dates

2011-11-20 Thread Rainer Schuermann
> n = 2 > > > sort( rep( seq(as.Date("2000/1/1"), by="month", length.out=3), n ) ) >

Re: [R] Generating Sequence of Dates

2011-11-20 Thread Jorge I Velez
Hi, Try rep(seq(as.Date("2000/1/1"), by="month", length.out=3), each = 2) and see ?rep for more info. HTH, Jorge.- On Mon, Nov 21, 2011 at 1:16 AM, arunkumar <> wrote: > Hi. > > I need to generate a sequence of date, I need to generate date for a > period. Each date should be generated

[R] Generating Sequence of Dates

2011-11-20 Thread arunkumar1111
Hi. I need to generate a sequence of date, I need to generate date for a period. Each date should be generated n times. E.g seq(as.Date("2000/1/1"), by="month", length.out=3) the output of this is "2000-01-01" "2000-02-01" "2000-03-01" But i need each date to be generated n times, if n =2 my

Re: [R] Generating sequence of dates

2009-10-28 Thread Vadlamani, Satish {FLNA}
Thanks. Please expect more newbie questions!! Satish -Original Message- From: jim holtman [mailto:jholt...@gmail.com] Sent: Wednesday, October 28, 2009 7:05 AM To: Vadlamani, Satish {FLNA} Cc: R-help@r-project.org Subject: Re: [R] Generating sequence of dates try this: > curr

Re: [R] Generating sequence of dates

2009-10-28 Thread jim holtman
try this: > current = as.Date("2009/10/25") > start <- seq(current, by='-1 week', length=2)[2] > seq(start, by='1 week', length=10) [1] "2009-10-18" "2009-10-25" "2009-11-01" "2009-11-08" "2009-11-15" "2009-11-22" "2009-11-29" "2009-12-06" "2009-12-13" [10] "2009-12-20" > On Wed, Oct 28, 2009 a

[R] Generating sequence of dates

2009-10-28 Thread Vadlamani, Satish {FLNA}
Hello All: I have the following question # instantiate a date current = as.Date("2009/10/25") #generate a sequence of dates in the future future_dates = seq(current,by='1 week',length=53) Question: How to generate a sequence of past dates starting one week in the past relative to the current da