Description Usage Arguments Value API Documentation See Also Examples
View source: R/fredr_series_updates.R
Returns information on the recently updated series on the FRED server.
1 2 3 4 5 6 7 8 9 10 |
... |
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.
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()
.
1 2 3 4 5 6 7 | 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)))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.