Creates a schedule of events occuring on the various Easter holidays in the Gregorian calendar.

on_easter_weekend() creates a schedule containing the union of the other schedules.

on_easter_sunday()

on_good_friday()

on_easter_monday()

on_easter_saturday()

on_easter_weekend()

Value

A schedule object.

Details

The algorithm for the date of Easter is provided by the timeDate package.

Examples

schedule_days(on_easter_sunday(), from = 2010, to = 2020)
#> [1] "2010-04-04" "2011-04-24" "2012-04-08" "2013-03-31" "2014-04-20" #> [6] "2015-04-05" "2016-03-27" "2017-04-16" "2018-04-01" "2019-04-21" #> [11] "2020-04-12"
schedule_days(on_good_friday(), from = 2010, to = 2020)
#> [1] "2010-04-02" "2011-04-22" "2012-04-06" "2013-03-29" "2014-04-18" #> [6] "2015-04-03" "2016-03-25" "2017-04-14" "2018-03-30" "2019-04-19" #> [11] "2020-04-10"
schedule_days(on_easter_monday(), from = 2010, to = 2020)
#> [1] "2010-04-05" "2011-04-25" "2012-04-09" "2013-04-01" "2014-04-21" #> [6] "2015-04-06" "2016-03-28" "2017-04-17" "2018-04-02" "2019-04-22" #> [11] "2020-04-13"