Skip to contents

Forward linkages capture how the increased output of a sector provides additional inputs to other sectors, enabling them to expand production.

Usage

forward_linkages(output_coefficient_matrix, digits = NULL)

Arguments

output_coefficient_matrix

An output coefficient matrix created with output_coefficient_matrix_create().

digits

Integer. Number of decimals for rounding. Defaults to NULL (no rounding).

Value

A data.frame with two columns:

  • The metadata column from the input matrix (sector/product names)

  • forward_linkages: the forward linkage indicator values

Details

Defined as the row sums of the Ghosh inverse, in line with the Eurostat Manual of Supply, Use and Input-Output Tables (pp. 506–507) and the United Nations Handbook on Supply and Use Tables and Input-Output Tables with Extensions and Applications (p. 637).

See also

Other linkage functions: backward_linkages()

Examples

data_table <- iotable_get()

de_out <- output_coefficient_matrix_create(
  data_table, "tfu",
  digits = 4
)

forward_linkages(
  output_coefficient_matrix = de_out,
  digits = 4
)
#>              iotables_row forward_linkages
#> 1       agriculture_group           2.1128
#> 2          industry_group           1.6909
#> 3            construction           1.3559
#> 4             trade_group           1.5850
#> 5 business_services_group           2.1040
#> 6    other_services_group           1.2105