iocoef | R Documentation |
iocoef
iocoef(adj, X, type = c("direct", "complete"))
adj |
is a square matrix of intermediate transactions in the input-output table. |
X |
is a column vector of gross output in the input-output table. |
type |
which type of consumption coefficient to calculate: "direct" or "complete". |
the consumption coefficient matrix.
adj <- matrix(sample(25), 5, 5) X <- as.vector(101:105) direct_coef <- iocoef(adj, X, type = "direct") complete_coef <- iocoef(adj, X, type = "complete")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.