date_xx_arithmetic {dint} | R Documentation |
date_xx Arithmetic Operations
Description
The arithmetic operations +
, -
as well as sequence generation with
seq()
are all supported for date_yq
and date_ym
objects. Other binary
arithmetic operators are disabled (see date_xx_arithmetic_disabled).
Usage
## S3 method for class 'date_xx'
x + y
## S3 method for class 'date_xx'
x - y
Arguments
x |
|
y |
an integer |
See Also
Examples
q <- date_yq(2018, 1)
q + 5
q - 1
seq(q, q + 5)
m <- date_ym(2018, 12)
m + 1
m - 13
seq(m - 1, m + 1)
[Package dint version 2.1.4 Index]