Description Usage Arguments Details Value See Also Examples
Executes Quandl API calls
1 2 3 4 5 6 | quandl.api(
path,
http = c("GET", "PUT", "POST", "DELETE"),
postdata = NULL,
...
)
|
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. |
Set your api_key
with Quandl.api_key
function. For instructions on finding your api key go to https://www.quandl.com/account/profile
Quandl API response.
1 2 3 4 5 | ## Not run:
quandldata = quandl.api(path="datasets/NSE/OIL", http="GET")
plot(quandldata[,1])
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.