yom_kippur {calcal} | R Documentation |
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)
Arguments
year |
A numeric vector of Gregorian years |
Value
A vector of dates on the Gregorian calendar
See Also
Examples
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)
)
[Package calcal version 1.0.0 Index]