mondate (version 0.10.01.02)

seq.mondate: Mondate Sequence Generation

Description

Generate regular mondate sequences.

Usage

"seq"(from, to, ...)

Arguments

from
a mondate. May be "missing".
to
a mondate. May be "missing".
...
optional arguments passed to seq.default, including by, length.out, and along.with. See seq for more details.

Value

A mondate vector with displayFormat and timeunits from argument from, if provided, otherwise from argument to.

Details

For more details about sequence generation, see seq.

If from and to are both provided, the displayFormat and timeunits properties are taken from from, without a warning if from's properties differ from to's.

See Also

seq

Examples

Run this code
x<-mondate.ymd(2010,1)
x                          # January 31, 2010
y<-mondate.ymd(2010,12)
y                          # December 31, 2010
seq(from=x, to=y)  # all month-ends in 2010
# 8 quarter-ends beginning 1st quarter 2009; US displayFormat
seq(mondate("3/31/2009"), by=3, length.out=8) 
# 8 quarter-ends ending year-end 2009; non-US displayFormat
seq(to=mondate("2009/12/31"), by=3, length.out=8) 

Run the code above in your browser using DataLab