Several tools for Global Value Chain ('GVC') analysis are implemented
- 'Importing to Export' (
i2e()
) - 'Exporting to Re-export' (
e2r()
) - 'New Revealed Comparative Advantage' (
nrca()
) - 'Upsteamness' (
upstream()
) - 'Downstreamness' (
downstream()
) - 'Domestic Final Demand Foreign Value Added' (
dfdfva()
) - 'Foreign Final Demand Domestic Value Added' (
ffddva()
) - 'Domestic Final Demand Domestic Value Added' (
dfddva()
)
The gvc package is available on CRAN, please note that this is a beta version, the API will change.
install.packages('gvc')
Additionally the development version, to be used at your own peril, is available from GitHub. Installation from GitHub is done using:
if (!require('remotes')) install.packages('remotes')
remotes::install_github('bquast/gvc')
Following installation, the package can be loaded using:
library(gvc)
For information on using the package, please refer to the help files.
help('gvc')
help(package = 'gvc')
For examples of usage, see the function specific help pages.
help('i2e')
help('e2r')
help('nrca')
help('upsteam')
help('downstream')
help('dfdfva')
help('ffddva')
help('dfddva')
In addition to the help files we provide long form examples in the vignette.
vignette('gvc')
# or
browseVignettes('gvc')
An overview of the changes is available in the NEWS file.
news(package='gvc')
There is also a blog post with information on my personal website.
This package relies on the diagonals package (CRAN).
Development takes place on the GitHub page.
Bugs can be filed on the GitHub issues page.