fredr_category_related {fredr} | R Documentation |
Get the related categories for a FRED category.
Description
Get the related categories for a FRED category.
Usage
fredr_category_related(
category_id,
...,
realtime_start = NULL,
realtime_end = NULL
)
Arguments
category_id |
An integer ID for the category. Default is |
... |
These dots only exist for future extensions and should be empty. |
realtime_start |
A |
realtime_end |
A |
Details
From the FRED API documentation: "A related category is a one-way relation between 2 categories that is not part of a parent-child category hierarchy. Most categories do not have related categories."
Value
A tibble
object containing the name and parent ID for categories
related to the category indicated by category_id
.
API Documentation
See Also
fredr_category()
, fredr_category_children()
,
fredr_category_series()
, fredr_category_tags()
, fredr_category_related_tags()
Examples
if (fredr_has_key()) {
# Categories related to the "Employment Cost Index" category
fredr_category_related(category_id = 4L)
}