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.

Reply via email to