quandl.api: Executes Quandl API calls

View source: R/Quandlapi.R

quandl.apiR Documentation

Executes Quandl API calls

Description

Executes Quandl API calls

Usage

quandl.api(
  path,
  http = c("GET", "PUT", "POST", "DELETE"),
  postdata = NULL,
  ...
)

Arguments

path

Path to api resource.

http

Type of http request sent.

postdata

A character or raw vector that is sent in a body.

...

Named values that are interpretted as Quandl API parameters. Please see https://docs.quandl.com.

Details

Set your api_key with Quandl.api_key function. For instructions on finding your api key go to https://www.quandl.com/account/profile

Value

Quandl API response.

See Also

Quandl.api_key

Examples

## Not run: 
quandldata = quandl.api(path="datasets/NSE/OIL", http="GET")
plot(quandldata[,1])

## End(Not run)

quandl/quandl-r documentation built on June 11, 2022, 2:04 a.m.