Skip to contents

Functions to return Gregorian dates for various Jewish holidays

Usage

yom_kippur(year)

passover(year)

purim(year)

hanukkah(year)

rosh_hashanah(year)

sukkot(year)

shavuot(year)

Arguments

year

A numeric vector of Gregorian years

Examples

tibble::tibble(
  year = 2025:2030,
  rosh_hashanah = rosh_hashanah(year),
  passover = passover(year),
  shavuot = shavuot(year),
  yom_kippur = yom_kippur(year),
  sukkot = sukkot(year),
  hanukkah = hanukkah(year),
  purim = purim(year),
)
#> # A tibble: 6 × 8
#>    year rosh_hashanah    passover     shavuot  yom_kippur      sukkot
#>   <int>         <Gre>       <Gre>       <Gre>       <Gre>       <Gre>
#> 1  2025   2025-Sep-23 2025-Apr-13 2025-Jun-02 2025-Oct-02 2025-Oct-07
#> 2  2026   2026-Sep-12 2026-Apr-02 2026-May-22 2026-Sep-21 2026-Sep-26
#> 3  2027   2027-Oct-02 2027-Apr-22 2027-Jun-11 2027-Oct-11 2027-Oct-16
#> 4  2028   2028-Sep-21 2028-Apr-11 2028-May-31 2028-Sep-30 2028-Oct-05
#> 5  2029   2029-Sep-10 2029-Mar-31 2029-May-20 2029-Sep-19 2029-Sep-24
#> 6  2030   2030-Sep-28 2030-Apr-18 2030-Jun-07 2030-Oct-07 2030-Oct-12
#> # ℹ 2 more variables: hanukkah <Gre>, purim <Gre>