Get a set of recently updated FRED series
Returns information on the recently updated series on the FRED server.
fredr_series_updates( ..., filter_value = NULL, start_time = NULL, end_time = NULL, limit = NULL, offset = NULL, realtime_start = NULL, realtime_end = NULL )
... |
These dots only exist for future extensions and should be empty. |
filter_value |
Filter results by type of geographic region of economic the data series. Possible values include
|
start_time |
A datetime object indicating the start time to filter series updates results. |
end_time |
A datetime object indicating the start time to filter series updates results. |
limit |
An integer limit on the maximum number of results to return.
Defaults to |
offset |
An integer used in conjunction with |
realtime_start |
A |
realtime_end |
A |
A tibble
object where each row represents a series. Rows are sorted
with most recently updated series appearing first.
if (fredr_has_key()) { # Get all recently updated "regional" series fredr_series_updates(filter_value = "regional") # Most recently udpated series are returned first updates <- fredr_series_updates(filter_value = "regional")$last_updated is.unsorted(rev(as.POSIXct(updates))) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.