-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathquandl.api.Rd
40 lines (37 loc) · 922 Bytes
/
quandl.api.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Quandlapi.R
\name{quandl.api}
\alias{quandl.api}
\title{Executes Quandl API calls}
\usage{
quandl.api(
path,
http = c("GET", "PUT", "POST", "DELETE"),
postdata = NULL,
...
)
}
\arguments{
\item{path}{Path to api resource.}
\item{http}{Type of http request sent.}
\item{postdata}{A character or raw vector that is sent in a body.}
\item{...}{Named values that are interpretted as Quandl API parameters. Please see \url{https://docs.quandl.com}.}
}
\value{
Quandl API response.
}
\description{
Executes Quandl API calls
}
\details{
Set your \code{api_key} with \code{Quandl.api_key} function. For instructions on finding your api key go to \url{https://www.quandl.com/account/profile}
}
\examples{
\dontrun{
quandldata = quandl.api(path="datasets/NSE/OIL", http="GET")
plot(quandldata[,1])
}
}
\seealso{
\code{\link{Quandl.api_key}}
}