Get all releases of economic data
fredr_releases(
...,
limit = NULL,
offset = NULL,
order_by = NULL,
sort_order = NULL,
realtime_start = NULL,
realtime_end = NULL
)
These dots only exist for future extensions and should be empty.
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 include: 'release_id'
(default), 'name'
, 'press_release'
,
'realtime_start'
, 'realtime_end'
.
A string representing the order of the resulting series.
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_releases(limit = 20L)
}
#> # A tibble: 20 × 7
#> id realtime_start realtime_end name press_release link notes
#> <int> <chr> <chr> <chr> <lgl> <chr> <chr>
#> 1 9 2023-04-17 2023-04-17 Advance Monthly … TRUE http… "The…
#> 2 10 2023-04-17 2023-04-17 Consumer Price I… TRUE http… NA
#> 3 11 2023-04-17 2023-04-17 Employment Cost … TRUE http… NA
#> 4 13 2023-04-17 2023-04-17 G.17 Industrial … TRUE http… NA
#> 5 14 2023-04-17 2023-04-17 G.19 Consumer Cr… TRUE http… NA
#> 6 15 2023-04-17 2023-04-17 G.5 Foreign Exch… TRUE http… NA
#> 7 17 2023-04-17 2023-04-17 H.10 Foreign Exc… TRUE http… NA
#> 8 18 2023-04-17 2023-04-17 H.15 Selected In… TRUE http… NA
#> 9 19 2023-04-17 2023-04-17 H.3 Aggregate Re… TRUE http… "The…
#> 10 20 2023-04-17 2023-04-17 H.4.1 Factors Af… TRUE http… NA
#> 11 21 2023-04-17 2023-04-17 H.6 Money Stock … TRUE http… NA
#> 12 22 2023-04-17 2023-04-17 H.8 Assets and L… TRUE http… NA
#> 13 25 2023-04-17 2023-04-17 Manufacturing an… TRUE http… "The…
#> 14 27 2023-04-17 2023-04-17 New Residential … TRUE http… NA
#> 15 46 2023-04-17 2023-04-17 Producer Price I… TRUE http… NA
#> 16 47 2023-04-17 2023-04-17 Productivity and… TRUE http… NA
#> 17 49 2023-04-17 2023-04-17 U.S. Internation… TRUE http… NA
#> 18 50 2023-04-17 2023-04-17 Employment Situa… TRUE http… NA
#> 19 51 2023-04-17 2023-04-17 U.S. Internation… TRUE http… NA
#> 20 52 2023-04-17 2023-04-17 Z.1 Financial Ac… TRUE http… "The…