fredr_sources {fredr} | R Documentation |
Get all sources of economic data
Description
Get all sources of economic data
Usage
fredr_sources(
...,
limit = NULL,
offset = NULL,
order_by = NULL,
sort_order = NULL,
realtime_start = NULL,
realtime_end = NULL
)
Arguments
... |
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_source()
, fredr_source_releases()
Examples
if (fredr_has_key()) {
fredr_sources(limit = 20L)
}