fredr_source_releases {fredr} | R Documentation |
Get the releases for a source
Description
Get the releases for a source
Usage
fredr_source_releases(
source_id,
...,
limit = NULL,
offset = NULL,
order_by = NULL,
sort_order = NULL,
realtime_start = NULL,
realtime_end = NULL
)
Arguments
source_id |
An integer ID for the data source. |
... |
These dots only exist for future extensions and should be empty. |
limit |
An integer limit on the maximum number of results to return.
Defaults to |
offset |
An integer used in conjunction with limit for long series.
This mimics the idea of pagination to retrieve large amounts of data over
multiple calls. Defaults to |
order_by |
A string indicating which attribute should be used to order the results. Possible values:
|
sort_order |
A string representing the order of the resulting series.
Possible values are: |
realtime_start |
A |
realtime_end |
A |
Value
A tibble
object.
API Documentation
See Also
fredr_sources()
, fredr_source()
Examples
if (fredr_has_key()) {
# Board of Governors
fredr_source_releases(source_id = 1L)
# University of Michigan
fredr_source_releases(source_id = 14L, realtime_start = as.Date("1950-01-01"))
}