fredr_series_updates {fredr} | R Documentation |
Get a set of recently updated FRED series
Description
Returns information on the recently updated series on the FRED server.
Usage
fredr_series_updates(
...,
filter_value = NULL,
start_time = NULL,
end_time = NULL,
limit = NULL,
offset = NULL,
realtime_start = NULL,
realtime_end = NULL
)
Arguments
... |
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 |
Value
A tibble
object where each row represents a series. Rows are sorted
with most recently updated series appearing first.
API Documentation
See Also
fredr_series_observations()
, fredr_series_search_text()
,
fredr_series_search_id()
, fredr_series_search_tags()
,
fredr_series_search_related_tags()
, fredr_series()
,
fredr_series_release()
, fredr_series_tags()
, fredr_series_categories()
,
fredr_series_vintagedates()
.
Examples
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)))
}