Learn R Programming

calcal (version 1.0.0)

yom_kippur: Jewish Holidays

Description

Functions to return Gregorian dates for various Jewish holidays

Usage

yom_kippur(year)

passover(year)

purim(year)

ta_anit_esther(year)

tishah_be_av(year)

hanukkah(year)

rosh_hashanah(year)

sukkot(year)

shavuot(year)

Value

A vector of dates on the Gregorian calendar

Arguments

year

A numeric vector of Gregorian years

See Also

hebrew_date

Examples

Run this code
tibble::tibble(
  year = 2025:2030,
  ta_anit_esther = ta_anit_esther(year),
  purim = purim(year),
  passover = passover(year),
  shavuot = shavuot(year),
  tishah_be_av = tishah_be_av(year),
  rosh_hashanah = rosh_hashanah(year),
  yom_kippur = yom_kippur(year),
  sukkot = sukkot(year),
  hanukkah = hanukkah(year)
)

Run the code above in your browser using DataLab