direct_effects_create {iotables} | R Documentation |
Create direct effects
Description
The function creates the effects.
Usage
direct_effects_create(input_requirements, inverse, digits = NULL)
Arguments
input_requirements |
A matrix or vector created by
|
inverse |
A Leontief-inverse created by
|
digits |
Rounding digits, defaults to |
Value
A data.frame containing the direct effects and the necessary metadata to sort them or join them with other matrixes.
See Also
Other indicator functions:
coefficient_matrix_create()
,
input_indicator_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 )
direct_effects_create(input_requirements = compensation_indicator,
inverse = I_nl)
[Package iotables version 0.9.3 Index]