output_coefficient_matrix_create {iotables} | R Documentation |
Create an output coefficient matrix
Description
Create an output coefficient matrix from the input flow matrix or a symmetric input-output table.
Usage
output_coefficient_matrix_create(data_table, total = "tfu", digits = NULL)
Arguments
data_table |
A symmetric input-output table, a use table,
a margins or tax table retrieved by the |
total |
The |
digits |
An integer showing the precision of the technology matrix in
digits. Default is |
Details
The output coefficients may be interpreted as the market shares of products in total output. If there are zero values in present, they will be changed to 0.000001 and you will get a warning. Some analytical equations cannot be solved with zero elements. You either have faulty input data, or you have to use some sort of data modification to carry on your analysis.
Value
An output coefficient matrix of data.frame class. The column names are ordered, and the row names are in the first, auxiliary metadata column.
Examples
data_table <- iotable_get()
output_coefficient_matrix_create (data_table = data_table,
total = 'tfu',
digits = 4)