R/fredr_release_related_tags.R
fredr_release_related_tags.Rd
FRED tags are attributes assigned to series. For this request, related FRED
tags are the tags assigned to series that match all tags in the tag_names
parameter, no tags in the exclude_tag_names
parameter, and the
release set by the release_id
parameter.
fredr_release_related_tags(
release_id,
tag_names,
...,
exclude_tag_names = NULL,
tag_group_id = NULL,
search_text = NULL,
limit = NULL,
offset = NULL,
order_by = NULL,
sort_order = NULL,
realtime_start = NULL,
realtime_end = NULL
)
An integer ID of the release.
A semicolon delimited string of tag names to be related to.
These dots only exist for future extensions and should be empty.
A semicolon delimited string of tag names that series match none of. No exclusions are done by default.
A string tag group id to filter tags by type. No filtering by tag group by default. Possible values are:
"freq"
= Frequency
"gen"
= General or Concept
"geo"
= Geography
"geot"
= Geography Type
"rls"
= Release
"seas"
= Seasonal Adjustment
"src"
= Source
A string indicating the words to find matching tags with. No filtering by search words by default.
An integer limit on the maximum number of results to return.
Defaults to 1000
, the maximum.
An integer used in conjunction with limit
for long series.
This mimics the idea of pagination to retrieve large amounts of data over
multiple calls. Defaults to 0
.
Order results by values of the specified attribute. Possible values are:
"series_count"
(default)
"popularity"
"created"
"name"
"group_id"
A string representing the order of the resulting series,
sorted by the attribute values specified by order_by
. Possible values
are: "asc"
(default), and "desc"
.
A Date
indicating the start of the real-time period.
Defaults to today's date. For more information, see
Real-Time Periods.
A Date
indicating the end of the real-time period.
Defaults to today's date. For more information, see
Real-Time Periods.
A tibble
object.
if (fredr_has_key()) {
fredr_release_related_tags(10, tag_names = "cpi")
}
#> # A tibble: 177 × 6
#> name group_id notes created popularity series_count
#> <chr> <chr> <chr> <chr> <int> <int>
#> 1 bls src "Bur… 2012-0… 88 4564
#> 2 indexes gen "" 2012-0… 87 4564
#> 3 price gen "" 2013-0… 87 4564
#> 4 price index gen "" 2012-0… 85 4564
#> 5 public domain: citation reque… cc NA 2018-1… 99 4564
#> 6 usa geo "Uni… 2012-0… 100 4564
#> 7 urban gen "" 2012-0… 62 4562
#> 8 inflation gen "" 2012-0… 81 4410
#> 9 nsa seas "Not… 2012-0… 99 4390
#> 10 consumer gen "" 2012-0… 68 4372
#> # ℹ 167 more rows