Construction de locaux non résidentiels - CONSTRUCTION-LOCAUX

Data - INSEE

TITLE_FR

Code
`CONSTRUCTION-LOCAUX` %>%
  group_by(IDBANK, TITLE_FR) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

INDICATEUR

Code
`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 189058
SURF_PLANCHER_COM Surface de plancher commencée 187894

UNIT_MEASURE

Code
`CONSTRUCTION-LOCAUX` %>%
  group_by(UNIT_MEASURE) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
UNIT_MEASURE Nobs
METRES_CARRES 376952

UNIT_MULT

Code
`CONSTRUCTION-LOCAUX` %>%
  group_by(UNIT_MULT) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
UNIT_MULT Nobs
0 376952

REF_AREA

Code
`CONSTRUCTION-LOCAUX` %>%
  group_by(REF_AREA) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}