Get the series in a category
Get the series in a category
fredr_category_series( category_id, ..., filter_variable = NULL, filter_value = NULL, tag_names = NULL, exclude_tag_names = NULL, limit = NULL, offset = NULL, order_by = NULL, sort_order = NULL, realtime_start = NULL, realtime_end = NULL )
category_id |
An integer ID for the category. |
... |
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. |
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 positive integer indicating maximum number of results to
return. Possible values are any integer between |
offset |
An non-negative 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 with information for series matching the request for
the category specified in category_id
.
if (fredr_has_key()) { # Top 10 most popular series belonging to the "Employment Cost Index" category fredr_category_series(category_id = 1L, limit = 10L, order_by = "popularity") # Series in the "Employment Cost Index" category, ordered by descending observation frequency fredr_category_series(category_id = 4L, order_by = "frequency", sort_order = "desc") }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.