Description Usage Arguments Value API Documentation See Also Examples
View source: R/fredr_release_series.R
Get the series on a release of economic data
1 2 3 4 5 6 7 8 9 10 11 12 13 14  | 
release_id | 
 An integer ID of the release.  | 
... | 
 These dots only exist for future extensions and should be empty.  | 
filter_variable | 
 A string indicating which attribute to indicate the
attribute that results are filtered by.  Possible values include:   | 
filter_value | 
 A string giving the value of the   | 
tag_names | 
 A string indicating which series tags to match. Multiple tags can be delimited by a semicolon in a single string (e.g. '"usa;gnp"“).  | 
exclude_tag_names | 
 A string indicating which series tags should not be matched. Multiple tags can be delimited by a semicolon in a single string (e.g. '"usa;gnp"“).  | 
limit | 
 An integer limit on the maximum number of results to return.
Defaults to   | 
offset | 
 An integer used in conjunction with   | 
order_by | 
 A string indicating an attribute by which the results are ordered by. Possible values include: 
  | 
sort_order | 
 A string representing the order of the resulting series.
Possible values are:   | 
realtime_start | 
 A   | 
realtime_end | 
 A   | 
A tibble object.
fredr_releases(), fredr_releases_dates(), fredr_release(),
fredr_release_dates(), fredr_release_sources(), fredr_release_tags(),
fredr_release_related_tags(), fredr_release_tables()
1 2 3 4 5 6 7 8 9 10 11 12  | if (fredr_has_key()) {
fredr_release_series(release_id = 20L)
fredr_release_series(release_id = 20L, order_by = "popularity")
# Extract the "catalog" of series from a release on a certain date
fredr_release_series(
   release_id = 20L,
   realtime_end = as.Date("2018-07-13"),
   order_by = "popularity"
)
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.