Industrial Production and Capacity Utilization - G.17 - G17

Data - FRB

Info

Last observation: 129: 2020-12-31 (N = 64) · 162: 2020-12-31 (N = 64) · 203: 2020-12-31 (N = 32)

First observation: 129: 1919-01-31 (N = 6) · 162: 1919-03-31 (N = 6) · 203: 1919-12-31 (N = 3)

Last data update: 25 jul 2026, 14:18. Last compile: 17 aoû 2026, 22:19

Nobs - Javascript

Code
G17 |>
  group_by(SERIES_CODE, SERIES_NAME, CURRENCY, UNIT) |>
  summarise(Nobs = n()) |>
  left_join(G17_var$CURRENCY |> rename(CURRENCY = id), by = "CURRENCY") |>
  select(-description.default) |>
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

Concepts

Code
G17_struct_concepts %>%
  {if (is_html_output()) print_table(.) else .}
id default
OBS_STATUS Observation status
SERIES_CODE Series Code
FREQ Frequency
OBS_VALUE Observation value
SERIES_NAME Series Name
UNIT Units
UNIT_MULT Unit multiplier
CURRENCY Currency
SA Seasonal Adjustment
TIME_PERIOD Time

UNIT_MULT

Code
G17_var$UNIT_MULT %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

CURRENCY

Code
G17 |>
  group_by(CURRENCY) |>
  summarise(Nobs = n()) |>
  left_join(G17_var$CURRENCY |> rename(CURRENCY = id), by = "CURRENCY") |>
  select(-description.default) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}