The wiod package is now available on CRAN. The package contains the complete WIOD data sets, in a format compatible with the decompr and gvc package.

Installation

The package can be installed using:

install.packages('wiod') # case sensitive!

Usage

Following installation, the package can be loaded using:

library(wiod)

Data can be loaded using the the data() function, using wiod followed by the last two digits of the required year, as the argument, e.g.

data(wiod95)
ls()
## [1] "countries"  "final95"    "industries" "inter95"    "output95"

For information on using the package, please refer to the help files.

help('wiod')
help(package = 'wiod')

For examples of usage, see the function-specific help pages.

help('countries')
help('industries')
help('inter95')

In addition to the help files we provide long-form examples in the vignette.

vignette('wiod')

# or
browseVignettes('wiod')

Additional Information

An overview of the changes is available in the NEWS file.

news(package='wiod')

Development

A development version can be installed at your own peril, using:

if (!require('devtools')) install.packages('devtools')
devtools::install_github("bquast/wiod")

Development takes place on the GitHub page, bugs can be filed on the Issues page.

Updated: