input_multipliers_create {iotables} | R Documentation |
Create input multipliers
Description
The function creates the multipliers (direct + indirect effects).
Usage
input_multipliers_create(
input_requirements,
Im,
multiplier_name = NULL,
digits = NULL
)
Arguments
input_requirements |
A matrix or vector created by
|
Im |
A Leontief-inverse created by |
multiplier_name |
An optional name to be placed in the key column of the multiplier.
Defaults to |
digits |
Rounding digits, defaults to |
Value
A data frame with the vector of multipliers and the an
auxiliary metadata column, containing an automatically given row identifier (for joining with other matrixes)
which can be overruled with setting multiplier_name
.
See Also
Other multiplier functions:
multiplier_create()
Examples
nl <- netherlands_2006
input_coeff_nl <- input_coefficient_matrix_create(
data_table = netherlands_2006,
households = FALSE)
compensation_indicator <- input_indicator_create(netherlands_2006, 'compensation_employees')
I_nl <- leontief_inverse_create(input_coeff_nl)
input_multipliers_create(input_requirements = compensation_indicator,
Im = I_nl)
[Package iotables version 0.9.3 Index]