doSUTRAS: Do the SUTRAS algorithm for updating supply and use tables

Description Usage Arguments Value Author(s) References Examples

Description

This function calculates an updated supply and (domestic and import) use table (SUTs), based on a given SUT and national accounts data.

Usage

1
2
doSUTRAS(V, Ud, Um, m0, u_bar, x_bar, M, c, epsilon = 0.0000000001,
  maxiter = 1000L, verbose = FALSE)

Arguments

V

the supply (make) matrix

Ud

the domestic use matrix

Um

the import use matrix

m0

the import vector

u_bar

vector with the new intermediate input sums

x_bar

vector with the new gross output sums

M

scalar, new total imports

c

vector with the negative entries of the trade margins, given in absolute values

epsilon

the error tolerance level, default is 1e-10.

maxiter

maximum number of iterations, default is 10000.

verbose

should some information of the iterations be displayed? Default is FALSE

Value

the updated SUTs, a list

Author(s)

Oliver Reiter

References

Temurshoev, U., & Timmer, M. P. (2011). Joint estimation of supply and use tables. Papers in Regional Science, 90(4), 863-882.

Examples

1
2
3
4
5
6
data(TestSUTs_AUT2010)
data(TestNA_AUT2011)
c <- rep(0, length(m0))
res <- doSUTRAS(V = V, Ud = Ud, Um = Um, m0 = m0, u_bar = ubar,
                x_bar = xbar, M = M, c = c, epsilon = 1e-10,
                maxiter = 100, verbose = FALSE)

zauster/riot documentation built on May 4, 2019, 9:12 p.m.