Learn R Programming

almanac (version 0.1.1)

alma_next: Generate the next or previous event

Description

  • alma_next() generates the next event after x.

  • alma_previous() generates the previous event before x.

Usage

alma_next(x, rschedule, inclusive = FALSE)

alma_previous(x, rschedule, inclusive = FALSE)

Value

A Date vector the same size as x.

Arguments

x

[Date]

A vector of dates.

rschedule

[rschedule]

An rschedule, such as an rrule or rbundle.

inclusive

[logical(1)]

If x is an event, should it be considered the next or previous event?

Examples

Run this code
on_12th <- monthly() %>% recur_on_mday(12)
on_monday <- weekly() %>% recur_on_wday("Monday")

# On the 12th of the month, or on Mondays
rb <- runion() %>%
  add_rschedule(on_12th) %>%
  add_rschedule(on_monday)

alma_next(c("2019-01-01", "2019-01-11"), rb)
alma_previous(c("2019-01-01", "2019-01-11"), rb)

Run the code above in your browser using DataLab