HICP at constant taxes - monthly data (annual rate of change) - prc_hicp_fp

Data - Eurostat

release

Code
prc_hicp_fp %>%
  left_join(release, by = "release") %>%
  group_by(release, Release) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
release Release Nobs
FIN Final 11871088
FLS Flash 20948

unit

Code
prc_hicp_fp %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
unit Unit Nobs
I15 Index, 2015=100 3287562
RCH_A Annual rate of change 3109480
I05 Index, 2005=100 2240926
I96 Index, 1996=100 1648912
RCH_M Monthly rate of change 1605156

coicop

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

geo

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