coefficient_matrix_create {iotables} | R Documentation |
Create a coefficient matrix
Description
Create a coefficient matrix from a Symmetric Input-Output Table.
Usage
coefficient_matrix_create(
data_table,
total = "output",
digits = NULL,
remove_empty = TRUE,
households = FALSE,
return_part = NULL
)
Arguments
data_table |
A symmetric input-output table, a use table,
a margins or tax table retrieved by the |
total |
Usually an output vector with a key column, defaults to
|
digits |
An integer showing the precision of the technology matrix in
digits. Default is |
remove_empty |
Defaults to |
households |
Defaults to |
return_part |
Defaults to |
Details
The coefficient matrix is related by default to output, but you can change this to total supply or other total aggregate if it exists in your table.
Value
A data.frame that contains the matrix of data_table
divided
by total
with a key column. Optionally the results are rounded to
given digits
.
References
See United Kingdom Input-Output Analytical Tables 2010 for explanation on the use of the Coefficient matrix.
See Also
Other indicator functions:
direct_effects_create()
,
input_indicator_create()
Examples
coefficient_matrix_create(data_table = iotable_get(source = "germany_1995"),
total = "output",
digits = 4 )