offset | R Documentation |
dates
by n
business daysReturns the given dates
offset by the given amount of n
business days.
offset(dates, n, cal)
add.bizdays(dates, n, cal)
dates |
dates to be offset |
n |
the amount of business days to offset |
cal |
the calendar's name |
The argument n
accepts a sequence of integers and if its length
differs from dates
' length, the recycle rule is applied to fulfill the
gap.
Date
objects offset by the amount of days defined.
The argument dates
accepts Date
objects and any
object that returns a valid Date
object when passed through
as.Date
, which include all POSIX*
classes and character
objects with ISO formatted dates.
These arguments handle the recycle rule so a vector of dates and a vector of numbers can be provided and once those vectors differs in length the recycle rule is applied.
offset("2013-01-02", 5, "Brazil/ANBIMA")
# Once you have a default calendar set, cal does not need to be provided
bizdays.options$set(default.calendar = "Brazil/ANBIMA")
dates <- seq(as.Date("2013-01-01"), as.Date("2013-01-05"), by = "day")
is.bizday(dates)
offset(dates, 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.