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

drv

The goal of drv is to provide data from the Ukrainian State Register of Voters

Installation

You can install the released version of drv from CRAN with:

install.packages("drv")

or you can install it from Github:

library(devtools)
install_github("amice13/drv")

Examples

Get all information about Ukrainian regions:

library(drv)

head(get_regions())

Get all information about organizations of Ukrainian State Register of Voters

head(get_drv_entites())

Get all election districts

get_districts()

Get all polling stations in a specified district

head(get_polling_stations(12))

Get all territories on a specified region:

head(get_territories(12))

Get all addresses in a specified territories

head(get_addresses(12))


Amice13/drv documentation built on Dec. 17, 2021, 8:47 a.m.