Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 2.09 KB

README.md

File metadata and controls

66 lines (49 loc) · 2.09 KB

prevederer

CRAN status Travis build status AppVeyor build status Codecov test coverage CRAN RStudio mirror downloads Project Status: Active – The project has reached a stable, usable state and is being actively developed. Lifecycle - maturing CRAN/METACRAN

Overview

prevederer is an R package for accessing the Prevedere API. Access to the Prevedere API requires an API key.

Installation

install.packages("prevederer")

Development version

devtools::install_github("wkdavis/prevederer") 

Usage

Endpoints

  • indicator: returns basic information about an indicator.
  • indicator_series: returns the data for an indicator.
  • correlation: calculates Pearson’s r and other statistics at different offsets between an endogenous and exogenous indicator.
  • raw_model: returns all information about a forecast model.
  • forecast: returns historical fit and forecasted values of a forecast model.
  • workbench: returns the indicators used in a workbench.

Example

library(prevederer)

api_key = "xyz123"
provider = "provider_a"
provider_id = "a123"

prevedere_indicator_series(api_key, provider, provider_id)