Description Usage Arguments Details Value Examples
View source: R/countryindustry_descr.R
Function gives the common country-industry description to the data
1 | countryindustry_descr(iot, countrycat = "None", industrycat = "None")
|
iot: |
List with elements of input-output table. |
countrycat: |
Vector with categorisation of countries (in integers). |
industrycat: |
vector with categorisation of industries (in integers). |
Mostly for use within functions to provide the country-industry description with its output.
Array with the country-industry description of the data.
1 2 3 4 5 6 7 8 9 10 11 | iot <- load_iot("WIOD2013", 2000)
descr <- countryindustry_descr(iot)
iots <- load_iots("WIOD2013", 2000:2001)
NAFTA <- c("USA", "MEX", "CAN")
BENELUX <- c("BEL", "NLD", "LUX")
regions <- countrycat(list(NAFTA, BENELUX), iots)
primary <- c("AtB", "C")
transport <- c("60", "61", "62", "63")
industries <- industrycat(list(primary, transport), iots)
descr_cat <- countryindustry_descr(iot, countrycat = regions, industrycat = industries)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.