knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(iotables)
require(dplyr); require(tidyr)

Germany sample files

The Germany example is used to test the code of the package. It follows the examples in Eurostat Manual of Supply, Use and Input-Output Tables. by Joerg Beutel (Eurostat Manual).

The germany_1990 dataset is a simplified 6x6 sized SIOT taken from the Eurostat Manual (page 481). It is brought to a long form similar to the Eurostat bulk files. The testthat infrastructure of the iotables package is checking data processing functions and analytical calculations against these published results.

The following data processing functions select and order the data from the Eurostat-type bulk file. Since the first version of this package, Eurostat moved all SIOT data products to the ESA2010 vocabulary, but the manual still follows the ESA95 vocabulary. The labels of the dataset were slightly changed to match the current metadata names. The changes are minor and self-evident, the comparison of the germany_1990 dataset and the Manual should cause no misunderstandings.

data_table <- iotable_get( labelling = "iotables" )
input_flow <- input_flow_get ( 
                  data_table = data_table, 
                  households = FALSE)

de_output <- primary_input_get ( data_table, "output" )
print (de_output[c(1:4)])
#>    iotables_row agriculture_group industry_group construction
#> 15       output             43910        1079446       245606

This vignette uses library(tidyverse), more particularly dplyr and tidyr, just like all analytical functions of iotables. Even if you do not use tidyverse, this packages will be installed together with iotables. These functions are only used in the vignette to print the output, and they are not essential for the examples.

Direct effects

The input coefficient matrix shows what happens in the whole domestic economy when an industry is facing additional demand, increases production. In the Germany example, all results are rounded to 4 digits for easier comparison with the Eurostat manual.

The input coefficients for domestic intermediates are defined on page 486. You can check the following results against Table 15.8 of the Eurostat manual. (Only the top-right corner of the resulting input coefficient matrix is printed for readability.)

The input_coefficient_matrix_create() function relies on the following equation. The numbering of the equations is the numbering of the Eurostat Manual.

  1. = [recap: (43) is the same]

It checks the correct ordering of columns, and furthermore it fills up 0 values with 0.000001 to avoid division with zero.

de_input_coeff <- input_coefficient_matrix_create( 
     data_table = data_table, 
     digits = 4)
#> Warning: `funs()` was deprecated in dplyr 0.8.0.
#> Please use a list of either functions or lambdas: 
#> 
#>   # Simple named list: 
#>   list(mean = mean, median = median)
#> 
#>   # Auto named with `tibble::lst()`: 
#>   tibble::lst(mean, median)
#> 
#>   # Using lambdas
#>   list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))

## which is equivalent to:

de_input_coeff <- coefficient_matrix_create( data_table, 
                             total = "output", 
                             return_part = "products", 
                             households = FALSE,
                             digits = 4)

print ( de_input_coeff[1:3, 1:3])
#>        iotables_row agriculture_group industry_group
#> 1 agriculture_group            0.0258         0.0236
#> 2    industry_group            0.1806         0.2822
#> 3      construction            0.0097         0.0068

Similarly, the output coefficient matrix is the following:

#>        iotables_row agriculture_group industry_group
#> 1 agriculture_group            0.0258         0.5803
#> 2    industry_group            0.0073         0.2822
#> 3      construction            0.0017         0.0299

These results can be checked on page 468 in the Manual.

The Leontieff matrix is derived from Leontieff equation system.

The Leontieff matrix is defined as and it is created with the leontieff_matrix_create() function.

The Leontieff inverse is and it is created with the leontieff_inverse_create() function from the Leontieff-matrix.

L_de <- leontieff_matrix_create ( technology_coefficients_matrix =
                                 de_input_coeff )
I_de <- leontieff_inverse_create(de_input_coeff)
I_de_4 <- leontieff_inverse_create(de_input_coeff, digits = 4)
print (I_de_4[,1:3])
#>              iotables_row agriculture_group industry_group
#> 1          industry_group            1.4155         0.5605
#> 2            construction            0.0441         1.0462
#> 3             trade_group            0.2180         0.2292
#> 4 business_services_group            0.2892         0.3237
#> 5    other_services_group            0.1089         0.1014
#> 6                   total            1.1152         1.3025

You can check the Leontieff matrix against Table 15.9 on page 487 of the Euorstat manual, and the Leontieff inverse against Table 15.10 on page 488. The ordering of the industries is different in the manual.

Creating indicators

Creating technical indicators

Technical indicators assume constant returns to scale and fixed relationship of all inputs to each industry. With these conditions the technical input coefficients show how much input products, labour or capital is required to produce a unit of industry output.

  1. \(a_{ij}\) = \(z_{ij}\) / \(x_j\) [technical input coefficients]

The helper function primary_input_get() selects a row from the SIOT and brings it to a conforming form. The input_indicator_create() creates the vector of technical input coefficients.

de_emp <- primary_input_get ( data_table,
                              primary_input = "employment_domestic_total" )

de_emp_indicator <- input_indicator_create ( 
    data_table  = data_table,
    input_vector = "employment_domestic_total")

print ( tidyr::gather( de_emp_indicator, indicators, values, !!2:ncol(de_emp_indicator))[,-1] )
#>                indicators      values
#> 1       agriculture_group 0.024960146
#> 2          industry_group 0.007764168
#> 3            construction 0.013175574
#> 4             trade_group 0.017129483
#> 5 business_services_group 0.006148852
#> 6    other_services_group 0.020054311

Often we want to analyze the effect of growing domestic demand on some natural units, such as employment or \(CO_2\) emissions. The only difficulty is that we need data that is aggregated / disaggregated precisely with the same industry breakup as our SIOT table.

European employment statistics have greater detail than our tables, so employment statistics must be aggregated to conform the 60 (61, 62) columns of the SIOT. There is a difference in the columns based on how national statistics offices treat imputed real estate income and household production, and trade margins. Czech SIOTs are smaller than most SIOTs because they do not have these columns and rows.

In another vignette we will show examples on how to work with these real-life data. For the sake of following the calculations, we are continuing with the simplified 1990 German data.

Creating income indicators

The input coefficients for value added are created with input_indicator_create().

de_gva <- primary_input_get ( data_table,
                              primary_input = "gva") 

de_gva_indicator  <- input_indicator_create( 
    data_table  = data_table,
    input_vector = "gva")

print( tidyr::gather(de_gva_indicator, indicators, values,!!2:ncol(de_gva_indicator))[,-1]  ) 
#>                indicators    values
#> 1       agriculture_group 0.4933728
#> 2          industry_group 0.3659488
#> 3            construction 0.4707703
#> 4             trade_group 0.5766124
#> 5 business_services_group 0.5999044
#> 6    other_services_group 0.7172413

This is equal to the equation on page 495 of the Eurostat Manual. The results above can be checked on the bottom of page 498.

  1. \(w_{ij}\) = \(W_{j}\) / \(x_j\) [input coefficients for value added]

You can create a matrix of input indicators, or direct effects on (final) demand with direct_supply_effects_create(). The function by default creates input requirements for final demand. With the code below it re-creates the Table 15.14 of the Eurostat manual.

direct_effects_de <- coefficient_matrix_create(
  data_table  = data_table, 
  total       = 'output', 
  return_part = 'primary_inputs')

knitr::kable ( direct_effects_de[1:6,1:4])
iotables_row agriculture_group industry_group construction
7 total 0.4152813 0.4828551 0.4682581
8 imports 0.0666591 0.1451698 0.0546689
9 intermediate_consumption 0.5066272 0.6340512 0.5292297
10 compensation_employees 0.2136643 0.2746446 0.3209164
11 net_tax_production -0.0458210 0.0013498 0.0039209
12 consumption_fixed_capital 0.1792530 0.0590757 0.0238594

The ‘total’ row above is labelled as Domestic goods and services in the Eurostat Manual. The table can be found on p498.

Multipliers

Income multipliers

The SIOTs contain (with various breakups) three types of income:

  • Employee wages, which is usually a proxy for all household income.

  • Gross operating surplus, which is a form of corporate sector income.

  • Taxes that are the income of government.

These together make gross value added (GVA). If you are working with SIOTs that use basic prices, then GVA = GDP at producers’ prices, or basic prices.

The GVA multiplier shows the additional gross value created in the economy if demand for the industry products is growing with unity. The wage multiplier (not shown here) shows the increase in household income.

The following equation is used to work with different income effects and multipliers:

  1. Z = B(I-A)-1

B = vector of input coefficients for wages or GVA or taxes.

Z = direct and indirect requirements for wages (or other income)

The indicator shows that manufacturing has the lowest, and other services has the highest gross value added component. This is hardly surprising, because manufacturing needs a lot of materials and imported components. When the demand for manufacturing in the domestic economy is growing by 1 unit, the gross value added is 0.3659488.

You can check these values against the Table 15.16 of the Eurostat Manual on page 501 (row 10).

You can recreate the whole matrix, when the data data permits, with input_multipliers_create() as shown here. Alternatively, you can create your own custom multipliers with multiplier_create() as shown in the following example.

input_reqr <- coefficient_matrix_create(
    data_table  = iotable_get (), 
    total       = 'output', 
    return_part = 'primary_inputs') 

multipliers <- input_multipliers_create(
  input_requirements = input_reqr,
  inverse = I_de)

knitr::kable(multipliers, digits= 4)
agriculture_group industry_group construction trade_group business_services_group other_services_group
7 <environment>_multiplier 2.68540535089593 2.69747311050155 2.74636047622115 2.77371865536628 2.68772796636426 2.73334099836677
8 <environment>_multiplier 2.35081996257473 1.73682349074383 2.9606273455949 3.0302277674519 5.09751098391137 2.89208896375524
9 <environment>_multiplier 2.64848127175063 2.54644792085702 2.84866699311511 2.82882102073116 2.85049778465738 2.68656726640444
10 <environment>_multiplier 5.22850448128565 4.82854808114035 4.27486775886289 3.13476810284758 5.68434652746025 1.96790238232353
11 <environment>_multiplier 1.75440922457173 -31.7613134068736 -9.91411023641964 -4.38676650006166 -1.6240518561975 2.01445864325335
12 <environment>_multiplier 2.27053561307396 5.6352096656793 12.3233231138882 3.58912866300644 2.32532653122482 2.31013210744462
13 <environment>_multiplier 2.77095806176288 10.7799950860823 3.44055299146446 3.38397950563377 1.82021802278639 2.47400125492644
14 <environment>_multiplier 3.74784006299814 5.32599431442647 4.34825682354541 3.17086366371906 3.05175143664354 2.08423434432194
15 <environment>_multiplier 3.19087500560593 3.56361966958793 3.55462928456431 3.02604703570521 2.97123073651063 2.25454922770314
16 <environment>_multiplier 2.83108650121869 9.9490354421885 9.47830131848828 3.60865781075941 4.20737388852734 2.02287459868216
17 <environment>_multiplier 4.0230603476267 6.23914984017754 4.2992398416755 3.09627453198874 6.79232294779834 2.0068221758786
18 <environment>_multiplier 1.59601249923798 34.0196753138538 8.51898255772015 3.82271704696259 7.41331274154061 4.25079330153506
19 <environment>_multiplier 2.66559654191294 7.39598117179823 4.7425997067729 3.19631644789801 6.88055658453251 2.14995613656862

You can check these results against the Table 15.16 on p501 of the Eurostat manual. the label ‘total’ refers to domestic intermediaries. The ordering of the rows is different from the Manual.

These multipliers are Type-I multipliers. The type-I GVA multiplier shows the total effect in the domestic economy. The initial extra demand creates new orders in the backward linking industries, offers new product to build on in the forward-linking industry and creates new corporate and employee income that can be spent. Type-II multipliers will be introduced in a forthcoming vignette [not yet available.]

Employment multipliers

The E matrix contains the input coefficients for labor (created by input_indicator_create()). The following matrix equation defines the employment multipliers.

  1. Z = E(I-A)-1

The multiplier_create() function performs the matrix multiplication, after handling many exceptions and problems with real-life data, such as different missing columns and rows in the national variations of the standard European table.

Please send a bug report on Github if you run into further real-life problems.

de_emp_indicator <- input_indicator_create (
  data_table = data_table, 
  input = 'employment_domestic_total') 

employment_multipliers <- multiplier_create ( 
  input_vector    = de_emp_indicator,
  Im              = I_de,
  multiplier_name = "employment_multiplier", 
  digits = 4 )

print (tidyr::gather(employment_multipliers,
              multipliers, values, 
              !!2:ncol(employment_multipliers))[-1])
#>               multipliers values
#> 1       agriculture_group 0.0665
#> 2          industry_group 0.0574
#> 3            construction 0.0625
#> 4             trade_group 0.0548
#> 5 business_services_group 0.0423
#> 6    other_services_group 0.0431

You can check against page 501 that these values are correct and on page 501 that the highest employment multiplier is indeed \(z_i\) = 0.0665, the employment multiplier of agriculture.

For working with real-life, current employment data, there is a helper function to retrieve and process Eurostat employment statistics to a SIOT-conforming vector employment_get(). This function will be explained in a separate vignette.

Output multipliers

Output multipliers and forward linkages are calculated with the help of output coefficients for product as defined on p486 and p495 of the the Eurostat Manual. The Eurostat Manual uses the definition of output at basic prices to define output coefficients which is no longer part of SNA as of SNA2010.

  1. \(b_{ij}\) = \(X_{ij}\) / \(x_i\) [also (45) output coefficients for products / intermediates].

\(x_i\): output of sector i

de_input_coeff <- input_coefficient_matrix_create( 
                         data_table = iotable_get(), 
                         digits = 4)
                           
output_multipliers <- output_multiplier_create ( 
                        input_coefficient_matrix = de_input_coeff )

knitr::kable (
  tidyr::gather(output_multipliers, multipliers, values)[-1,]
  )
multipliers values
2 agriculture_group 1.70492243301356
3 industry_group 1.8414208680286
4 construction 1.81374666684297
5 trade_group 1.60371174683177
6 business_services_group 1.59497385374824
7 other_services_group 1.37837464728208

These multipliers can be checked against the Table 15.15 on p500 of the Eurostat Manual.

Interindustrial linkage analysis

The backward linkages, i.e. demand side linkages, show how much incremental demand is created via suppliers when an industry is facing increased demand and produces more.

Forward linkages on the other hand show the effect of increased production, which gives either more or cheaper supplies for other industries that rely on the output of the given industry.

For example, when a new concert is put on stage, orders are filled for real estate, security services, catering, etc, which show in the backward linkages. The concert attracts visitors that creates new opportunities for the hotel industry in forward linkages.

Backward linkages

de_coeff <- input_coefficient_matrix_create( iotable_get(), digits = 4)
I_de <- leontieff_inverse_create ( de_coeff )

de_bw <- backward_linkages(I_de)
print (tidyr::gather(de_bw, backward_linkages, values)[-1,])
#>         backward_linkages           values
#> 2       agriculture_group 1.70492243301356
#> 3          industry_group  1.8414208680286
#> 4            construction 1.81374666684297
#> 5             trade_group 1.60371174683177
#> 6 business_services_group 1.59497385374824
#> 7    other_services_group 1.37837464728208

You can check the results against Table 15.19 on page 506 of the Eurostat Manual.

Manufacturing has the highest backward linkages, and other services the least. An increased demand for manufacturing usually effects supplier industries. Service industry usually have a high labor input, and their main effect is increased spending of the wages earned in the services.

Forward linkages

Forward linkages show the strength of the new business opportunities when industry i starts to increase its production. Whereas backward linkages show the increased demand of the suppliers in industry i, forward linkages show the increased availability of inputs for other industries that rely on industry i as a supplier.

de_out <- output_coefficient_matrix_create ( 
  data_table, "final_demand", digits = 4
  )
                                    
forward_linkages ( output_coefficient_matrix = de_out )
#>              iotables_row forward_linkages
#> 1       agriculture_group         2.112754
#> 2          industry_group         1.690891
#> 3            construction         1.355896
#> 4             trade_group         1.584989
#> 5 business_services_group         2.104036
#> 6    other_services_group         1.210504

You can check forward linkages against the Table 15.20 of Eurostat Manual on page 507.