Federal Reserve Board Datasets - FRB

Data

All Datasets

Javascript

Federal Reserve Data: https://www.federalreserve.gov/data.htm

Code
datasets %>%
  mutate(Last_download = as.Date(file.info(paste0("~/iCloud/website/data/frb/", id, ".RData"))$mtime),
         Last_compile = as.Date(file.info(paste0("~/iCloud/website/data/frb/", id, ".html"))$mtime)) %>%
  mutate(html = paste0('<a  target=_blank href=https://fgeerolf.com/data/frb/', id, '.html > html </a>')) %>%
  datatable(filter = 'top', escape = F, rownames = F)

Flat

Code
datasets %>%
  mutate(Last_download = as.Date(file.info(paste0("~/iCloud/website/data/frb/", id, ".RData"))$mtime),
         Last_compile = as.Date(file.info(paste0("~/iCloud/website/data/frb/", id, ".html"))$mtime)) %>%
  mutate(html = paste0("[html](https://fgeerolf.com/data/frb/", id, '.html)')) %>%
  {if (is_html_output()) print_table(.) else .}
id label Last_download Last_compile html
Z1 Financial Accounts of the United States - Z.1 2020-04-19 2025-08-26 [html]
H10 Foreign Exchange Rates - H.10 2025-08-24 2025-08-26 [html]
E2 Survey of Terms of Business Lending - E.2 2020-02-14 NA [html]
G17 Industrial Production and Capacity Utilization - G.17 2021-02-17 2025-08-26 [html]
G20 Finance Companies - G.20 2020-02-14 NA [html]
G19 Consumer Credit - G.19 2020-02-14 NA [html]
H6 Money Stock Measures - H.6 2025-08-24 2025-08-26 [html]
H3 Aggregate Reserves of Depository Institutions and the Monetary Base - H.3 2020-02-14 NA [html]
H8 Assets and Liabilities of Commercial Banks in the U.S. - H.8 2020-02-14 NA [html]
DFA Distributional Financial Accounts - DFA 2025-08-26 2025-08-26 [html]
wage-growth-data The Atlanta Fed's Wage Growth Tracker 2025-08-26 2025-08-26 [html]

All Datasets

Federal Reserve Data: https://www.federalreserve.gov/data.htm

Code
datasets %>%
  mutate(html = paste0('<a  target=_blank href=https://fgeerolf.com/data/frb/', id, '.html > html </a>')) %>%
  datatable(filter = 'top', escape = F, rownames = F)