get_va_fd {exvatools}R Documentation

Value added induced by final demand

Description

Details of both geographical and sector origin of the VA incorporated in exports induced by final demand. Equivalent to the OECD's Origin of Value added in Final Demand (FDVA_BSCI), but with much more flexible geographical and sector options.

Usage

get_va_fd(
  wio_object,
  va_type = "TOTAL",
  geo_orig = "WLD",
  sec_orig = "TOTAL",
  geo_fd = "WLD",
  sec_fd = "TOTAL",
  intra = FALSE
)

Arguments

wio_object

A wio object

va_type

String character with the type of VA induced (VA domestically absorbed "VAD" or exported "VAX") or the equivalent inducing VA (domestic final demand "DFD" or foreign final demand "FFD"). That is, "VAD" and "DFD" will produce the same result, and so will "VAX" and "FFD". Default is both, i.e. "TOTAL" VA o total demand.

geo_orig

String character with code of country or country group generating value added, i.e., exporter. Default is "all")

sec_orig

String character with code of sector or sector group generating value added. Default: "all")

geo_fd

String character with code of country (or country group) of final demand (inducing the generation of VA)

sec_fd

String character with code of sector (or sector group) of final demand (inducing the generation of VA)

intra

Boolean for inclusion of intra-regional exports (default: FALSE)

Value

Matrix with source and destination of value added.

Examples

wio <- make_wio("iciotest")
# Get USA's total VA in services induced by China's manufacturing
get_va_fd(wio, geo_orig = "USA", sec_orig = "SRVWC",
         geo_fd = "CHN", sec_fd = "MANUF")
# Get world VA exported (VAX), i.e., world VA induced by the rest of
# the world not domestically absorbed
get_va_fd(wio, "VAX", "WLD", "TOTAL", "WLD", "TOTAL")

[Package exvatools version 0.8.0 Index]