| bm | R Documentation |
Decomposes gross exports into value-added and Global Value Chain (GVC) components following
the Borin and Mancini (2019) framework, as implemented in the Stata icio command
(Belotti, Borin and Mancini 2021). It is the R counterpart of the decompose() function
in the Julia package ICIO.jl, and operates on a decompr object created by
load_tables_vectors.
bm(
x,
aggregation = c("country", "sector", "bilateral"),
perspective = c("exporter", "world"),
approach = c("source", "sink")
)
x |
an object of class |
aggregation |
character. The level of the decomposition:
|
perspective |
character. The accounting perspective defining the perimeter for double
counting: |
approach |
character. How double-counted items are allocated across shipments:
|
For the default exporter / source perspective the decomposition yields 13 terms; the
world / sink perspective (country level only, the "corrected KWW" decomposition) yields 9.
All terms are in the same units as the input-output table (e.g. millions of USD). The
following accounting identities hold: GEXP = DC + FC, DC = DVA + DDC,
FC = FVA + FDC, DVA = VAX + REF, and (exporter/source only)
GVC = GVCB + GVCF = GEXP - DAVAX and GVCB = FC + DDC.
GEXP | Gross exports. |
DC / FC | Domestic / foreign content. |
DVA / FVA | Domestic / foreign value added. |
DDC / FDC | Domestic / foreign double counting. |
VAX | Domestic value added absorbed abroad (Johnson and Noguera 2012). |
REF | Reflection: domestic value added returning home. |
DAVAX | Domestic value added directly absorbed by the importer. |
GVC | GVC-related trade (value added crossing more than one border). |
GVCB / GVCF | Backward / forward GVC participation. |
The exporter / source decomposition is additive: the "sector" result is the sum of
the "bilateral" result over importers, and the "country" result is the sum of
the "sector" result over industries.
A data.frame with one row per unit and one column per value-added term,
preceded by factor identifier columns: Exporting_Country (country);
Exporting_Country, Exporting_Industry (sector); or Exporting_Country,
Exporting_Industry, Importing_Country (bilateral). The attribute "decomposition" is
set to "bm".
Sebastian Krantz
Borin, A. and Mancini, M. (2019). Measuring What Matters in Global Value Chains and Value-Added Trade. World Bank Policy Research Working Paper 8804.
Belotti, F., Borin, A. and Mancini, M. (2021). icio: Economic analysis with intercountry input-output tables. The Stata Journal, 21(3), 708-755.
kww, wwz, leontief, decompr-package
# Load example data and create a 'decompr' object
data(leather)
dec <- load_tables_vectors(leather)
# Country-level decomposition (exporter perspective, source approach; 13 terms)
bm(dec)
# Country-level "corrected KWW" (world perspective, sink approach; 9 terms)
bm(dec, perspective = "world", approach = "sink")
# Sector- and bilateral-sector-level decompositions
bm(dec, aggregation = "sector")
bm(dec, aggregation = "bilateral")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.