Code
pat_ep_ripc %>%
left_join(ipc, by = "ipc") %>%
group_by(ipc, Ipc) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}Data - Eurostat
pat_ep_ripc %>%
left_join(ipc, by = "ipc") %>%
group_by(ipc, Ipc) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}pat_ep_ripc %>%
left_join(unit, by = "unit") %>%
group_by(unit, Unit) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) print_table(.) else .}| unit | Unit | Nobs |
|---|---|---|
| NR | Number | 1864174 |
| P_MHAB | Per million inhabitants | 993910 |
| GDP_BEUR | Nominal GDP in billion euro | 772559 |
| P_MACT | Per million of population in the labour force | 335184 |
pat_ep_ripc %>%
left_join(geo, by = "geo") %>%
group_by(geo, Geo) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}