On Wed, Aug 25, 2010 at 6:05 AM, abotaha <yaseen0...@gmail.com> wrote: > > Woow, it is amazing, > thank you very much. > yes i forget to attach the dates, however, the dates in my case is every 16 > days. > so how i can use 16 day interval instead of month in by option.
Here's one way using the lubridate package: library(lubridate) today() + days(16) * seq_len(50) ymd("2008-01-01") + days(16) * seq_len(50) -- Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice University http://had.co.nz/ ______________________________________________ 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.