R/iso_FRO.R

Defines functions FRO

Documented in FRO

#' Faroe Islands
#'
#' @source \url{`r repo("FRO")`}
#' 
FRO <- function(level){
  x <- NULL
  
  #' @concept Level 1
  #' @section Data Sources:
  #' 
  #' ## Level 1
  #' `r docstring("FRO", 1)`
  #' 
  if(level==1){
    
    #' - \href{`r repo("github.cssegisanddata.covid19")`}{Johns Hopkins Center for Systems Science and Engineering}:
    #' confirmed cases,
    #' deaths,
    #' recovered.
    #'
    x1 <- github.cssegisanddata.covid19(state = "Faroe Islands", level = 2)
    
    #' - \href{`r repo("ourworldindata.org")`}{Our World in Data}:
    #' tests,
    #' total vaccine doses administered,
    #' people with at least one vaccine dose,
    #' people fully vaccinated,
    #' hospitalizations,
    #' intensive care.
    #'
    x2 <- ourworldindata.org(id = "FRO")
    
    # merge
    x <- full_join(x1, x2, by = "date")
    
  }

  return(x)
}
covid19datahub/COVID19dev documentation built on March 16, 2023, 3:22 a.m.