inst/doc/CMEvignette1.R

## ---- include = FALSE---------------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

## -----------------------------------------------------------------------------
options(rmarkdown.html_vignette.check_title = FALSE)
library(CME.assistant)

## ---- eval = TRUE-------------------------------------------------------------
# without supplying dir_file, by default returns the published IGME 2020 final
# results
dt_1 <- get.CME.UI.data(use_IGME_year = 2020)
head(dt_1)

## ---- eval = FALSE------------------------------------------------------------
#  # can read final output file from Dropbox for any indicator
#  # loading Dropbox files requires access to corresponding files
#  dir_list <- load.final_dir()
#  dt_2 <- get.CME.UI.data(dir_file = dir_list$dir_female_2020)
#  head(dt_2)

## ---- eval = FALSE------------------------------------------------------------
#  dir_cqt_files <- file.path(CME.assistant::get.IGME.dir(2020),
#                             "figData/cqt_backup")
#  list.files(dir_cqt_files)
#  dt_cqt <- get.dt.cqt(dir_cqt_files)
#  dt_cqt[, table(Shortind, Sex)]
#  # table to be added into the profile by country:
#  dt1 <- get.table.by.iso(iso0 = "AFG")

## ---- eval = FALSE------------------------------------------------------------
#  input_dirs <- load.IGMEinput.dir()
#  dir_U5MR   <- get.dir_U5MR(input_dirs$dir_IGME_20)
#  dir_IMR    <- get.dir_IMR(input_dirs$dir_IGME_20)
#  dir_NMR    <- get.dir_NMR(y5 = TRUE) # either 5-year or not
#  dir_gender <- get.dir_gender(plotting = TRUE) # either dataset for plotting or modeling

## -----------------------------------------------------------------------------
# a helpful function to revise variable, you can provide a __new_list__ to define the labels
get.match(c("a","b", "c"), new_list = list("a" = "new label 1",
                                           "b" = "new label 2"))


## -----------------------------------------------------------------------------
str(UNICEF_colors)

Try the CME.assistant package in your browser

Any scripts or data that you put into this service are public.

CME.assistant documentation built on March 22, 2021, 5:07 p.m.