Get the data vintage dates for a FRED series
Given a series ID, return a sequence of dates in history when a series'
data values were revised or new data values were released as a tibble
object.
fredr_series_vintagedates( series_id, ..., limit = NULL, offset = NULL, sort_order = NULL, realtime_start = NULL, realtime_end = NULL )
series_id |
A string ID for the FRED series. |
... |
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 series.
Possible values are: |
realtime_start |
A |
realtime_end |
A |
A tibble
object where each row is a distinct vintage date.
if (fredr_has_key()) { # All data vintages for the "UNRATE" series fredr_series_vintagedates(series_id = "UNRATE") # 10 most recent data vintages for the "UNRATE" series fredr_series_vintagedates(series_id = "UNRATE", limit = 10L, sort_order = "desc") }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.