Code
`CONSTRUCTION-LOCAUX` %>%
group_by(IDBANK, TITLE_FR) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}Data - INSEE
`CONSTRUCTION-LOCAUX` %>%
group_by(IDBANK, TITLE_FR) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}`CONSTRUCTION-LOCAUX` %>%
left_join(INDICATEUR, by = "INDICATEUR") %>%
group_by(INDICATEUR, Indicateur) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) print_table(.) else .}| INDICATEUR | Indicateur | Nobs |
|---|---|---|
| SURF_PLANCHER_AUT | Surface de plancher autorisée | 190294 |
| SURF_PLANCHER_COM | Surface de plancher commencée | 189130 |
`CONSTRUCTION-LOCAUX` %>%
group_by(UNIT_MEASURE) %>%
summarise(Nobs = n()) %>%
{if (is_html_output()) print_table(.) else .}| UNIT_MEASURE | Nobs |
|---|---|
| METRES_CARRES | 379424 |
`CONSTRUCTION-LOCAUX` %>%
group_by(UNIT_MULT) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) print_table(.) else .}| UNIT_MULT | Nobs |
|---|---|
| 0 | 379424 |
`CONSTRUCTION-LOCAUX` %>%
group_by(REF_AREA) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}