National consumer price index (CPI), monthly rate of change - discontinued - CPI_MCPI_COI_RT_M

Data - ILO

ref_area

Code
CPI_MCPI_COI_RT_M |>
  left_join(ref_area, by = "ref_area") |>
  group_by(ref_area, Ref_area) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

indicator

Code
CPI_MCPI_COI_RT_M |>
  left_join(indicator, by = "indicator") |>
  group_by(indicator, Indicator) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
indicator Indicator Nobs
CPI_MCPI_COI_RT National consumer price index (CPI), monthly rate of change - discontinued (%) 150729

classif1

Code
CPI_MCPI_COI_RT_M |>
  left_join(classif1, by = "classif1") |>
  group_by(classif1, Classif1) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
classif1 Classif1 Nobs
COI_COICOP_CP01 COICOP2012: 1. Food and non-alcoholic beverages 75504
COI_COICOP_CP01T12 COICOP2012: General - Individual consumption expenditure of households 75225

source

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