-
Notifications
You must be signed in to change notification settings - Fork 0
/
IIM_build_matrices.R
354 lines (261 loc) · 13.6 KB
/
IIM_build_matrices.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
# Title : COVID-19 Inoperability
# Objective : Evaluate impact of COVID-19 on italian national economy and environment through Inoperability and IO Tables
# Created by: plynyo & emmegamma (Github user)
# Created on: 03/06/20
#NOTATION
# _t represents the transpose of a matrix
# _i represents the inverse of a matrix/vector
# _d represents the diagonal matrix of a vector
# _n normalized matrix/vector
# _s star matrix (Inoperability formalism)
# CAPITAL LETTERS represent MATRICES
# LOW CASE LETTERS represent VECTORS
# 0 <- data directly from SIOT EUROSTAT
# 1 <- Formalism of "Inoperability Input-Output Model .. Theory and Methodology
# 2 <- test examples
###############################################################################
#########################IMPORT NECESSARY PACKAGES#############################
###############################################################################
want = c(
"eurostat","iotables",
"matlib",
"rstudioapi",
"tidyverse"
)
have = want %in% rownames(installed.packages())
if ( any(!have) ) { install.packages( want[!have] ) }
junk <- lapply(want, library, character.only = TRUE)
rm(have,want,junk)
#Folder where to save temporary data
temporary_directory <- file.path(getwd(),'data','temp')
if ( ! dir.exists(temporary_directory) ) dir.create (temporary_directory)
###############################################################################
###################IMPORT SECONDARY FILES WITH FUNCTIONS#######################
###############################################################################
source("IIM_functions.R")
source("IIM_label_functions.R")
###############################################################################
###################IMPORT IO TABLES FROM EUROSTAT##############################
###############################################################################
#GET TABLES at BASIC PRICE for ALL COUNTRIES AND YEARS and FILTER PER COUNTRY
# filter is dplyr::filter
country_id <- "IT"
if ( ! file.exists(file.path(temporary_directory,"naio_10_cp1700.rds")) ) {
naio_10_cp1700 <- iotables_download("naio_10_cp1700", #SIOT PP
data_directory = temporary_directory )
naio_10_cp1700_it <- naio_10_cp1700 %>%
filter ( geo %in% c(country_id)) %>%
filter ( year %in% c(2010, 2019))
}
if ( ! file.exists(file.path(temporary_directory,"naio_10_cp1750.rds")) ) {
naio_10_cp1750 <- iotables_download("naio_10_cp1750", #SIOT II
data_directory = temporary_directory )
naio_10_cp1750_it <- naio_10_cp1750 %>%
filter ( geo %in% c(country_id)) %>%
filter ( year %in% c(2010, 2019))
}
if ( ! file.exists(file.path(temporary_directory,"naio_10_cp1610.rds")) ) {
naio_10_cp1610 <- iotables_download("naio_10_cp1610", #Use
data_directory = temporary_directory )
naio_10_cp1610_it <- naio_10_cp1610 %>%
filter ( geo %in% c(country_id)) %>%
filter ( year %in% c(2010, 2019))
}
if ( ! file.exists(file.path(temporary_directory,"naio_10_cp15.rds")) ) {
naio_10_cp15 <- iotables_download("naio_10_cp15", #Supply
data_directory = temporary_directory )
naio_10_cp15_it <- naio_10_cp15 %>%
filter ( geo %in% c(country_id)) %>%
filter ( year %in% c(2010, 2019))
}
###############################################################################
######################## LOAD TEMPORARY DATA ##################################
###############################################################################
#load from pre-saved file to increase running speed
load (file = file.path(temporary_directory,'naio_10.rda') )
load (file = file.path(temporary_directory, 'naio_10_it.rda') )
###############################################################################
####################### SAVE TEMPORARY DATA ###################################
###############################################################################
#save all data
if ( ! file.exists(file.path(temporary_directory,"naio_10.rda")) )
save (naio_10_cp1700, naio_10_cp1750, naio_10_cp1610,naio_10_cp15,
file = file.path(temporary_directory, 'naio_10.rda'))
#save italian all data
if ( ! file.exists(file.path(temporary_directory,"naio_10_it.rda")) )
save (naio_10_cp1700_it, naio_10_cp1750_it, naio_10_cp1610_it,naio_10_cp15_it,
file = file.path(temporary_directory, 'naio_10_it.rda'))
###############################################################################
######GET SIOT (industryxindustry & productxproduct Symmetric IO Tables)#######
#####################and SUT (Supply and Use Tables)###########################
###############################################################################
year <- 2015
#SHORT LABELS (OPTION: labelling = "short")
#LONG LABELS (OPTION: labelling = "iotables")
Z0_pp <- iotable_get ( labelled_io_data = naio_10_cp1700,
source = "naio_10_cp1700", geo = country_id,
year = year, unit = "MIO_EUR",
stk_flow = "TOTAL",
labelling = "short")
Z0_ii <- iotable_get ( labelled_io_data = naio_10_cp1750,
source = "naio_10_cp1750", geo = country_id,
year = year, unit = "MIO_EUR",
stk_flow = "TOTAL",
labelling = "short")
supply <- iotable_get ( labelled_io_data = naio_10_cp15,
source = "naio_10_cp15", geo = country_id,
year = year, unit = "MIO_EUR",
stk_flow = "TOTAL",
labelling = "short")
use <- iotable_get ( labelled_io_data = naio_10_cp1610,
source = "naio_10_cp1610", geo = country_id,
year = year, unit = "MIO_EUR",
stk_flow = "TOTAL",
labelling = "short")
###############################################################################
#########################Input coefficients matrix#############################
###############################################################################
#Product x Product Matrix
A0_pp <- input_coefficient_matrix_create(
data_table = Z0_pp
)
#Industry x Industry Matrix
A0_ii <- input_coefficient_matrix_create(
data_table = Z0_ii
)
###############################################################################
#########################GET SECTORS LABELS####################################
###############################################################################
# Build the DB of sectors by name and code
all_sectors <- get_labels(Z0_ii)
pp_sectors <- get_labels(A0_pp)
ii_sectors <- get_labels(A0_ii)
#GET LABELS FROM MATRIX -> get_labels_matrix() works only on matrix (after matrix_setup())
Z <- matrix_setup(Z0_ii)
A <- matrix_setup(A0_ii)
Z_col_label <- get_labels_matrix(Z,"column")
Z_row_label <- get_labels_matrix(Z,"row")
tail(Z_row_label)
#Write NACE codes to Excel
#nace_file_name <- file.path(getwd(),'data','temp',"Z_codes.xlsx")
#xlsx::write.xlsx ( Z_col_label, file = nace_file_name, sheetName = "Column of Z",
# col.names=TRUE, row.names=TRUE, append=FALSE)
#xlsx::write.xlsx ( Z_row_label, file = nace_file_name, sheetName = "Row of Z",
# col.names=TRUE, row.names=TRUE, append=TRUE)
###############################################################################
##################################Leontieff matrix#############################
###############################################################################
#Product x Product Matrix
L0_pp <- leontieff_matrix_create( A0_pp )
#Industry x Industry Matrix
L0_ii <- leontieff_matrix_create( A0_ii )
###############################################################################
##########################Leontieff Inverse matrix#############################
###############################################################################
#Product x Product Matrix
I0_pp <- leontieff_inverse_create( A0_pp )
#Industry x Industry Matrix
I0_ii <- leontieff_inverse_create( A0_ii )
###############################################################################
###############################################################################
###############FORMALISM FROM Inoperability Input-Output Model#################
#######for Interdependent Infrastructure Sectors. I: Theory and Methodology####
##################### METHOD 1 #######################
###############################################################################
###############################################################################
###############################################################################
######################### Generic Operators ###################################
###############################################################################
#Total Number of Sector
tot_sector <- nrow(A0_ii)
#UNITY VECTOR (SUM VECTOR)
s <- sum_vect(tot_sector)
#IDENTITY MATRIX
I <- I_matr(tot_sector)
###############################################################################
####################### EXOGENEOUS DEMAND e ###################################
###############################################################################
#WHICH COLUMN HAS TO BE SELECTED????
e1 <- use[1:tot_sector,c("TFU")]
#?????????????????????????????????????????
###############################################################################
############## SUPPLY TRANSPOSE - MAKE MATRIX #################################
###############################################################################
#V_t <- supply matrix (row = commodity ; column = industry)
#V <- make matrix (row = industry ; column = commodity) is the supply matrix transpose
V_t <- matrix_setup(supply,tot_sector)
V <- t(V_t)
###############################################################################
###################### TOTAL INDUSTRY OUTPUT VECTOR ###########################
###############################################################################
#Equation 2 or 3 or 12 or 17
### Is this x0 ? it's the same as x1...
x0 <- rowSums(V)
x1 <- V %*% t(s)
x1_i <- vect_inv(x1)
x1_i_d <- diag(as.vector(x1_i))
###############################################################################
########################## NORMALIZED USE TABLE ###############################
###############################################################################
#Equation 11
#U <- use matrix (row = commodity ; column = industry)
U <- matrix_setup(use,tot_sector)
#Equation 13 or 14
U_n <- U %*% x1_i_d
###############################################################################
########################## TOTAL COMMODITY OUTPUT VECTOR ######################
###############################################################################
#Equation 5 (1st method)
y1 <- t(V) %*% t(s)
#Equation 9 or 10 (2nd method)
y1a <- U %*% t(s) + e1
#Equation 20 (3rd method)
y1b <- U_n %*% x1 + e1
y1_i <- vect_inv(y1)
y1_i_d <- diag(as.vector(y1_i))
#TO DO -> Compare with y0
#CHECK ON EUROSTAT MANUAL CHAPTER 11
#I THINK WE HAVE TO SUBTRACT TRADE AND MARGIN
###############################################################################
########################## NORMALIZED MAKE MATRIX #############################
###############################################################################
#Equation 6
V_n <- V %*% y1_i_d
###############################################################################
################### TECHNICAL COEFFIECIENT MATRIX A ###########################
###############################################################################
#Equation 15
A1_ii <- V_n %*% U_n
#A = V_n*U_n (CHECK IT WITH A0_ii) - perhaps A = U_n*V_n should be A_pp
#TO DO -> Compare with A0
#CHECK ON EUROSTAT MANUAL CHAPTER 11
#I THINK WE HAVE TO SUBTRACT TRADE AND MARGIN
###############################################################################
###################### TRANSFORMATION MATRIX P ################################
###############################################################################
#P=(diag(x)^-1)
#Equation 35
P1 <- P_create (x1)
P1_i <- P_inv_create(x1)
#TO DO -> calculate P0
###############################################################################
################# DEMAND-BASED INTEDEPENDENCY MATRIX A* #######################
###############################################################################
#Equation 6 in "Managin the risk of terrorism...", 33 or 36 in "Inoperability...Theory and Methodology"
#A* = P * A * P^-1
#USARE A = V*U or A0_ii o A0_pp (directly from II - PP SIOT)
#TO DO -> change P1 with P0
A0_ii <- matrix_setup(A0_ii)
A0_ii_s <- A_star2(P1, A0_ii, P1_i)
# or A0_ii_s2 <- A_star(A0_ii, x1)
A1_ii_s <- A_star2(P1,A1_ii,P1_i)
###############################################################################
######################## Sector interdependency index #########################
############## From "Managing the risk of terrorism" paper ####################
###############################################################################
#interdependency index for Industry i
#Equation 31
theta <- theta_create(A1_ii_s)
#interdependency ratio of Sectors i and j
#Equation 32
ro <- ro_create(theta)