Industrial Production and Capacity Utilization - G.17 - G17

Data - FRB

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 Name.default
OBS_VALUE Observation value
SERIES_CODE Series Code
UNIT_MULT Unit multiplier
FREQ Frequency
SERIES_NAME Series Name
CURRENCY Currency
UNIT Units
OBS_STATUS Observation status
TIME_PERIOD Time
SA Seasonal Adjustment

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 .}