R/fredr_release_dates.R
fredr_release_dates.Rd
Get release dates for a single release of economic data
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
)
An integer ID of the release.
These dots only exist for future extensions and should be empty.
An integer limit on the maximum number of results to return.
Defaults to 10000
, the maximum.
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 0
.
A string representing the order of the resulting release
dates. Possible values are: "asc"
(default), and "desc"
.
A boolean value indicating if the
results with no data available should be returned as well.
Default is FALSE
.
A Date
indicating the start of the real-time period.
Defaults to 1776-07-04
(earliest available). For more information, see
Real-Time Periods.
A Date
indicating the end of the real-time period.
Defaults to 9999-12-31
(latest available). For more information, see
Real-Time Periods.
A tibble
object.
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"))
}
#> # A tibble: 2 × 2
#> release_id date
#> <int> <chr>
#> 1 20 1997-03-06
#> 2 20 1997-03-13