
Financial balance sheets - consolidated - SNA 2008 - SNA_TABLE710R
Data - OECD
Layout (France)
- OECD Website. html
Data Structure
Code
SNA_TABLE710R_var$VAR_DESC %>%
{if (is_html_output()) print_table(.) else .}| id | description |
|---|---|
| LOCATION | Country |
| TRANSACT | Transaction |
| SECTOR | Sector |
| MEASURE | Measure |
| TIME | Time |
| OBS_VALUE | Observation Value |
| TIME_FORMAT | Time Format |
| OBS_STATUS | Observation Status |
| UNIT | Unit |
| POWERCODE | Unit multiplier |
| REFERENCEPERIOD | Reference period |
Nobs
Code
SNA_TABLE710R %>%
left_join(SNA_TABLE710R_var %>% pluck("TRANSACT"), by = c("TRANSACT" = "id")) %>%
rename(`TRANSACT Description` = label) %>%
group_by(TRANSACT, `TRANSACT Description`, SECTOR, MEASURE) %>%
summarise(nobs = n()) %>%
arrange(-nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}Nobs - Javascript
Code
SNA_TABLE710R %>%
left_join(SNA_TABLE710R_var %>% pluck("TRANSACT"), by = c("TRANSACT" = "id")) %>%
rename(`TRANSACT Description` = label) %>%
group_by(TRANSACT, `TRANSACT Description`, SECTOR, MEASURE) %>%
summarise(nobs = n()) %>%
arrange(-nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}LOCATION
Code
SNA_TABLE710R_var$LOCATION %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}TRANSACT
Code
SNA_TABLE710R_var$TRANSACT %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}SECTOR
Code
SNA_TABLE710R_var$SECTOR %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}MEASURE
Code
SNA_TABLE710R_var$MEASURE %>%
{if (is_html_output()) print_table(.) else .}| id | label |
|---|---|
| C | National currency, current prices |
| CXCE | US $, current prices, current exchange rates, end of period |