Learn R Programming

dint (version 2.1.4)

date_xx_arithmetic: 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 date_xx
+(x, y)

# S3 method for date_xx -(x, y)

Arguments

x

a date_yq or date_ym object

y

an integer

See Also

Examples

Run this code
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)

Run the code above in your browser using DataLab