fredr_release_dates {fredr} | R Documentation |
Get release dates for a single release of economic data
Description
Get release dates for a single release of economic data
Usage
fredr_release_dates(
release_id,
...,
limit = NULL,
offset = NULL,
sort_order = NULL,
include_release_dates_with_no_data = NULL,
realtime_start = NULL,
realtime_end = NULL
)
Arguments
release_id |
An integer ID of the release. |
... |
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 |
sort_order |
A string representing the order of the resulting release
dates. Possible values are: |
include_release_dates_with_no_data |
A boolean value indicating if the
results with no data available should be returned as well.
Default is |
realtime_start |
A |
realtime_end |
A |
Value
A tibble
object.
API Documentation
See Also
fredr_releases()
, fredr_releases_dates()
, fredr_release()
,
fredr_release_series()
, fredr_release_sources()
, fredr_release_tags()
,
fredr_release_related_tags()
, fredr_release_tables()
Examples
if (fredr_has_key()) {
fredr_release_dates(release_id = 20L)
# Call the function with an "as of" Date of 1997-03-14
fredr_release_dates(release_id = 20L, realtime_end = as.Date("1997-03-14"))
}