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 .} {
Data - ILO
%>%
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 .} {
%>%
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 (%) | 136620 |
%>%
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_COMPONENT_FOO | COICOP (Selected categories): Food and non-alcoholic beverages | 68077 |
COI_COMPONENT_GEN | COICOP (Selected categories): General | 68543 |
%>%
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 .} {