-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathQuandl.pit.asofdate.Rd
36 lines (33 loc) · 1.13 KB
/
Quandl.pit.asofdate.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Quandlpointintime.R
\name{Quandl.pit.asofdate}
\alias{Quandl.pit.asofdate}
\title{Retrieves Point In Time Data from the Quandl PIT endpoint.
As of date is used to see the table as it was at a specific point in time in the past.}
\usage{
Quandl.pit.asofdate(datatable_code, start_date, paginate = FALSE, ...)
}
\arguments{
\item{datatable_code}{Datatable code on Quandl specified as a string.}
\item{start_date}{Lower date as a string.}
\item{paginate}{When set to TRUE, fetches up to 1,000,000 rows of data}
\item{...}{Additional named values that are interpreted as Quandl API parameters.}
}
\value{
Returns a data.frame.
}
\description{
Retrieves Point In Time Data from the Quandl PIT endpoint.
As of date is used to see the table as it was at a specific point in time in the past.
}
\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{
Quandl.pit.asofdate('RSM/MSB', '2020-06-11', paginate=TRUE)
}
}
\seealso{
\code{\link{Quandl.api_key}}
}