
Get Official Public Holidays in Chile for a Given Year
Source:R/get_chile_holidays.R
get_chile_holidays.Rd
Retrieves the list of official public holidays in Chile for a specific year using the Nager.Date public holidays API. This function returns a tibble containing the date of the holiday, the name in the local language (Spanish), and the English name. It is useful for academic, planning, and data analysis purposes. The information is retrieved directly from the Nager.Date API and reflects the current status of holidays for the requested year. The field names returned are consistent with the API structure.
Source
Data obtained from the Nager.Date API: https://date.nager.at/
Value
A tibble with the following columns:
date
: Date of the holiday (classDate
)local_name
: Holiday name in the local language (Spanish)name
: Holiday name in English
Examples
get_chile_holidays(2024)
#> # A tibble: 17 × 3
#> date local_name name
#> <date> <chr> <chr>
#> 1 2024-01-01 Año Nuevo New Year'…
#> 2 2024-03-29 Viernes Santo Good Frid…
#> 3 2024-03-30 Sábado Santo Holy Satu…
#> 4 2024-05-01 Día del Trabajo Labour Day
#> 5 2024-05-21 Día de las Glorias Navales Navy Day
#> 6 2024-06-07 Asalto y Toma del Morro de Arica Battle of…
#> 7 2024-06-20 Día Nacional de los Pueblos Indígenas National …
#> 8 2024-06-29 San Pedro y San Pablo Saint Pet…
#> 9 2024-07-16 Virgen del Carmen Our Lady …
#> 10 2024-08-15 Asunción de la Virgen Assumptio…
#> 11 2024-09-18 Fiestas Patrias National …
#> 12 2024-09-19 Día de las Glorias del Ejército Army Day
#> 13 2024-10-12 Día del Descubrimiento de Dos Mundos Columbus …
#> 14 2024-10-31 Día Nacional de las Iglesias Evangélicas y Protestantes Reformati…
#> 15 2024-11-01 Día de Todos los Santos All Saints
#> 16 2024-12-08 Inmaculada Concepción Immaculat…
#> 17 2024-12-25 Navidad / Natividad del Señor Christmas…
get_chile_holidays(2025)
#> # A tibble: 17 × 3
#> date local_name name
#> <date> <chr> <chr>
#> 1 2025-01-01 Año Nuevo New Year'…
#> 2 2025-04-18 Viernes Santo Good Frid…
#> 3 2025-04-19 Sábado Santo Holy Satu…
#> 4 2025-05-01 Día del Trabajo Labour Day
#> 5 2025-05-21 Día de las Glorias Navales Navy Day
#> 6 2025-06-07 Asalto y Toma del Morro de Arica Battle of…
#> 7 2025-06-20 Día Nacional de los Pueblos Indígenas National …
#> 8 2025-06-29 San Pedro y San Pablo Saint Pet…
#> 9 2025-07-16 Virgen del Carmen Our Lady …
#> 10 2025-08-15 Asunción de la Virgen Assumptio…
#> 11 2025-09-18 Fiestas Patrias National …
#> 12 2025-09-19 Día de las Glorias del Ejército Army Day
#> 13 2025-10-12 Día del Descubrimiento de Dos Mundos Columbus …
#> 14 2025-10-31 Día Nacional de las Iglesias Evangélicas y Protestantes Reformati…
#> 15 2025-11-01 Día de Todos los Santos All Saints
#> 16 2025-12-08 Inmaculada Concepción Immaculat…
#> 17 2025-12-25 Navidad / Natividad del Señor Christmas…