happen: Does a date fall on a schedule?

View source: R/happen.R

happenR Documentation

Does a date fall on a schedule?

Description

Does a date fall on a schedule?

Usage

happen(schedule, date)

Arguments

schedule

A schedule object

date

a date-time object

Value

TRUE or FALSE depending on whether the date falls on the schedule.

Examples

my_dates <- seq.Date(from = as.Date("2000-01-01"),
                     to = as.Date("2000-01-10"),
                     by = "1 day")

on_saturday <- on_wday("Sat")
on_sunday <- on_wday("Sun")

happen(on_saturday, my_dates)
happen(on_sunday, my_dates)
happen(on_weekend(), my_dates)

jameslairdsmith/scheduler documentation built on July 27, 2023, 6:06 p.m.