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 output "2000-01-01" "2001-01-01" "2000-02-01" "2000-02-01" "2000-03-01" "2000-03-01" -- View this message in context: http://r.789695.n4.nabble.com/Generating-Sequence-of-Dates-tp4090672p4090672.html Sent from the R help mailing list archive at Nabble.com.
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, arunkumar1111 <> wrote:> 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 output > > "2000-01-01" "2001-01-01" "2000-02-01" "2000-02-01" "2000-03-01" > "2000-03-01" > > > > > -- > View this message in context: > http://r.789695.n4.nabble.com/Generating-Sequence-of-Dates-tp4090672p4090672.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
> n = 2 > sort( rep( seq(as.Date("2000/1/1"), by="month", length.out=3), n ) )[1] "2000-01-01" "2000-01-01" "2000-02-01" "2000-02-01" "2000-03-01" [6] "2000-03-01" On Sunday 20 November 2011 22:16:36 arunkumar1111 wrote:> 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 output > > "2000-01-01" "2001-01-01" "2000-02-01" "2000-02-01" "2000-03-01" > "2000-03-01" > > > > > -- > View this message in context: > http://r.789695.n4.nabble.com/Generating-Sequence-of-Dates-tp4090672p409 > 0672.html Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html and provide commented, > minimal, self-contained, reproducible code.