R/iso_HTI.R

Defines functions HTI

Documented in HTI

#' Haiti
#'
#' @source \url{`r repo("HTI")`}
#' 
HTI <- function(level){
  x <- NULL
  
  #' @concept Level 1
  #' @section Data Sources:
  #' 
  #' ## Level 1
  #' `r docstring("HTI", 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(country = "Haiti")
    
    #' - \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 = "HTI")
    
    # merge
    x <- full_join(x1, x2, by = "date")
    
  }
  
  #' @concept Level 2
  #' @section Data Sources:
  #' 
  #' ## Level 2
  #' `r docstring("HTI", 2)`
  #' 
  if(level==2){
    
    #' - \href{`r repo("humdata.ht")`}{Ministry of Public Health and Population of Haiti}:
    #' confirmed cases,
    #' deaths.
    #'
    x <- humdata.ht(level = level)
    x$id <- id(x$state, iso = "HTI", ds = "humdata.ht", level = level)
    
  }
  
  return(x)
}
covid19datahub/COVID19dev documentation built on March 16, 2023, 3:22 a.m.