The function creates the multipliers (direct + indirect effects).
input_multipliers_create(input_requirements, inverse, digits = NULL)
A matrix or vector created by
input_indicator_create
A Leontieff-inverse created by leontieff_inverse_create
.
Rounding digits, defaults to NULL
, in which case
no rounding takes place. Rounding is important if you replicate examples from the literature,
rounding differences can add up to visible differences in matrix equations.
A data frame with the vector of multipliers and the an auxiliary metadata column (for joining with other matrixes.)
Other multiplier functions:
multiplier_create()
# NOT RUN {
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 <- leontieff_inverse_create( input_coeff_nl )
input_multipliers_create(input_requirements = compensation_indicator,
inverse = I_nl)
# }
Run the code above in your browser using DataLab