README.md

edata

API wrapper for E-Data (spending.gov.ua). Uses API Transactions version 2.0.

To install and load:

devtools::install_github("texty/edata")

library(edata)

The functions of the package are:

Examples

library(tidyverse)

To get all transactions of Kyiv city council for the first 3 months of 2018:

kyivrada_transactions <-

orgs("Київська міська рада") %>%

transactions(startdate = "2018-01-01", enddate = "2018-03-31")

To get top100 transactions in Kharkiv oblast:

kharkiv_top100 <-

regs("Харківська") %>%

top100()

To download full list of organizations and statistics of their transactions:

download_organisations(filename = "organisations.csv")



texty/edata documentation built on May 20, 2019, 5:58 p.m.