knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

covidminsa: A package for download COVID data from MINSA Peru

The goal of covidminsa is to be an easy way to obtain data from Minsa Peru about COVID-19.

Installation

You can install the development version of covidminsa from GitHub with:

# install.packages("devtools")
devtools::install_github("brianmsm/covidminsa")

Example

This is a basic example which shows you how to download the vaccination data:

library(covidminsa)
get_vaccination()
library(dplyr)
fs::dir_info() %>% 
  select(path, type, size, modification_time) %>% 
  filter(stringr::str_detect(path, "vacunas_covid"))


brianmsm/covidminsa documentation built on Jan. 18, 2022, 12:24 a.m.