README.md

epiVN

This package contains vaccine coverages by province and year in Vietnam. These data come from the WHO's Expanded Programme on Immunization (EPI).

Installation and loading

You can install epiVN from GitHub

```{r eval = FALSE}

install.packages("devtools")

devtools::install_github("choisy/epiVN", build_vignettes = TRUE)


Once installed, you can load the package:

```{r}
library(epiVN)

Usage examples

So far, there is vaccination data only against Japanese encephalitis, per province, per year from 1997 to 2016. These data are contained in the je data frame. Data against other diseases will be added latter on.

data(je)
dim(je)
head(je)

The data are defined for a given province (province), a given year (year), and a given vaccination dose scheme (nb_doses) and contains:

Note that the nb_districts is the same for the 2 doses scheme of a given province and a given year.

Percentage of districts included in the programme as a function of time

The number of districts included in the vaccination programme increases with time:

plot(nb_districts / districts_tot ~ year, subset(je, nb_doses == 2),
     pch = 19, col = rgb(0, 0, 0, .1),
     xlab = NA, ylab = "percentage of districts")

Vaccine coverages

with(je, hist(nb_people / people_tg, n = 20, col = "grey",
              xlab = "vaccine coverage", ylab = "frequency"))


choisy/epiVN documentation built on May 20, 2019, 6:46 p.m.