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

How to get your API key?

You have to sign up for the EVDS website and then your API key will be located at your profile page. This key will is needed for further analysis.

Some Starter Code

Remember to replace "YOURAPIKEY" with your API key.

devtools::install_github("algopoly/EVDS")
library(EVDS)
set_evds_key("YOURAPIKEY")
# Get data on some series
get_series()
# See all Categories
show_categories()
# See all Data Groups
dglist <- show_datagroups()
head(dglist)
# See all series from a data group
show_serie_lists(ccode="bie_abanlbil")
# See all series on the website 
get_all_series()


algopoly/EVDS documentation built on May 30, 2019, 12:45 p.m.