Learn R Programming

iotables (version 0.9.4)

output_multiplier_create: Create output multipliers

Description

Compute output multipliers from a Leontief inverse matrix.

Usage

output_multiplier_create(input_coefficient_matrix)

Value

A one-row data.frame (or tibble) with:

  • The first column a label "output_multipliers".

  • Remaining columns the multipliers for each industry.

Arguments

input_coefficient_matrix

A technology–coefficient matrix as returned by input_coefficient_matrix_create().

Details

The output multipliers are defined as the column sums of the Leontief inverse \((I - A)^{-1}\), where \(A\) is the input coefficient matrix. They measure the total direct and indirect output generated in each industry per unit increase in final demand.

See Eurostat (2008), Manual of Supply, Use and Input–Output Tables, p. 500; UN (2018), Handbook on Supply and Use Tables and Input–Output Tables with Extensions and Applications, §15.35.

See Also

Other multiplier functions: input_multipliers_create(), multiplier_create()

Examples

Run this code
de_input_coeff <- input_coefficient_matrix_create(
  iotable_get(),
  digits = 4
)

output_multiplier_create(de_input_coeff)

Run the code above in your browser using DataLab