countryindustry_descr: Country - Industry description

Description Usage Arguments Details Value Examples

View source: R/countryindustry_descr.R

Description

Function gives the common country-industry description to the data

Usage

1
countryindustry_descr(iot, countrycat = "None", industrycat = "None")

Arguments

iot:

List with elements of input-output table.

countrycat:

Vector with categorisation of countries (in integers).

industrycat:

vector with categorisation of industries (in integers).

Details

Mostly for use within functions to provide the country-industry description with its output.

Value

Array with the country-industry description of the data.

Examples

 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) 

sybrendeuzeman/WIOD_package documentation built on Jan. 29, 2020, 9:07 p.m.