Industrial Production and Capacity Utilization - G.17

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