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 | 12811398 |
| FLS | Flash | 25448 |
Data - Eurostat
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 | 12811398 |
| FLS | Flash | 25448 |
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 | 3543675 |
| RCH_A | Annual rate of change | 3365266 |
| I05 | Index, 2005=100 | 2351534 |
| RCH_M | Monthly rate of change | 1861319 |
| I96 | Index, 1996=100 | 1715052 |
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 .}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 .}