National consumer price index (CPI), annual rate of change - discontinued - discontinued - CPI_ACPI_COI_RT_A

Data - ILO

ref_area

Code
CPI_ACPI_COI_RT_A %>%
  left_join(ref_area, by = "ref_area") %>%
  group_by(ref_area, Ref_area) %>%
  summarise(Nobs = n()) %>%
  mutate(Flag = gsub(" ", "-", str_to_lower(Ref_area)),
         Flag = paste0('<img src="../../bib/flags/vsmall/', Flag, '.png" alt="Flag">')) %>%
  select(Flag, everything()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}

indicator

Code
CPI_ACPI_COI_RT_A %>%
  left_join(indicator, by = "indicator") %>%
  group_by(indicator, Indicator) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
indicator Indicator Nobs
CPI_ACPI_COI_RT National consumer price index (CPI), annual rate of change - discontinued (%) 32743

classif1

Code
CPI_ACPI_COI_RT_A %>%
  left_join(classif1, by = "classif1") %>%
  group_by(classif1, Classif1) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
classif1 Classif1 Nobs
COI_COMPONENT_CLO COICOP (Selected categories): Clothing and footwear 6092
COI_COMPONENT_EGF COICOP (Selected categories): Electricity, gas and other fuels 4450
COI_COMPONENT_FOO COICOP (Selected categories): Food and non-alcoholic beverages 7647
COI_COMPONENT_GEN COICOP (Selected categories): General 7731
COI_COMPONENT_GEX COICOP (Selected categories): General excluding actual and imputed rentals for housing 1531
COI_COMPONENT_HOU COICOP (Selected categories): Actual and imputed rentals for housing 5292

source

Code
CPI_ACPI_COI_RT_A %>%
  left_join(source, by = "source") %>%
  group_by(source, Source) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}