Nazaj geo health R
Analiza zapiranja šol je izvedena na podlagi podatkov OxCGRT (Oxford Covid-19 Government Response Tracker), in sicer so na voljo od 01. januar, 2020 do 04. februar, 2021.
Opredelitev ravni zaprtja šol je naslednja:
0
→ no measures,1
→ recommend closing or all schools open with alterations resulting in significant differences compared to non-Covid-19 operations,2
→ require closing (only some levels or categories, eg just high school, or just public schools),3
→ require closing all levels.data.c1_school_closing <-
read_excel( "./data/OxCGRT_timeseries_all.xlsx", "c1_school_closing") %>%
pivot_longer(cols = c(-country_code, -country_name), names_to = "date") %>%
mutate(date = parse_date(date, "%d%b%Y")) %>%
filter(!is.na(value))