Code
`CNA-2010-PAT-NF` %>%
group_by(IDBANK, TITLE_FR) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}Data - INSEE
`CNA-2010-PAT-NF` %>%
group_by(IDBANK, TITLE_FR) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}`CNA-2010-PAT-NF` %>%
left_join(OPERATION, by = "OPERATION") %>%
group_by(OPERATION, Operation) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}`CNA-2010-PAT-NF` %>%
left_join(INDICATEUR, by = "INDICATEUR") %>%
group_by(INDICATEUR, Indicateur) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) print_table(.) else .}| INDICATEUR | Indicateur | Nobs |
|---|---|---|
| CNA_ENCOURS_CONSO_CF_BRANCHE | Encours et consommation de capital fixe par branche | 168168 |
| CNA_ENCOURS_VAR_PATRI_NF_SI | Encours et variation de patrimoine non financier par secteur institutionnel | 39682 |
| CNA_FBCF_ACTIF | Formation Brute de Capital Fixe par actif | 876 |
| CNA_ENCOURS_CONSO_CF_SI | Encours et consommation de capital fixe par secteur institutionnel | 234 |
`CNA-2010-PAT-NF` %>%
group_by(NATURE) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
{if (is_html_output()) print_table(.) else .}| NATURE | Nobs |
|---|---|
| VALEUR_ABSOLUE | 208960 |
`CNA-2010-PAT-NF` %>%
group_by(UNIT_MEASURE) %>%
summarise(Nobs = n()) %>%
{if (is_html_output()) print_table(.) else .}| UNIT_MEASURE | Nobs |
|---|---|
| EUR2010 | 85116 |
| EUROS_COURANTS | 123844 |