Équilibre ressources-emplois (ERE) - CNA-2010-ERE

Data - INSEE

TITLE_FR

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

OPERATION

Code
`CNA-2010-ERE` %>%
  left_join(OPERATION, by = "OPERATION") %>%
  group_by(OPERATION, Operation) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

NATURE

Code
`CNA-2010-ERE` %>%
  group_by(NATURE) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
NATURE Nobs
VALEUR_ABSOLUE 164128
INDICE 62381

UNIT_MEASURE

Code
`CNA-2010-ERE` %>%
  group_by(UNIT_MEASURE) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
UNIT_MEASURE Nobs
EUR2010 62534
EUROS_COURANTS 101594
SO 62381