Code
%>%
demo_r_mwk3_t 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 | 1246387 |
Data - Eurostat
%>%
demo_r_mwk3_t 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 | 1246387 |
%>%
demo_r_mwk3_t left_join(geo, by = "geo") %>%
group_by(geo, Geo) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) datatable(., filter = 'top', rownames = F) else .} {
%>%
demo_r_mwk3_t filter(time == "2020W37") %>%
left_join(geo, by = "geo") %>%
select(geo, Geo, values) %>%
if (is_html_output()) datatable(., filter = 'top', rownames = F) else .} {
%>%
demo_r_mwk3_t filter(time == "2020W36") %>%
left_join(geo, by = "geo") %>%
select(geo, Geo, values) %>%
if (is_html_output()) datatable(., filter = 'top', rownames = F) else .} {