-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimulationStudy.R
More file actions
466 lines (381 loc) · 14.6 KB
/
SimulationStudy.R
File metadata and controls
466 lines (381 loc) · 14.6 KB
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
####################
# Simulation study #
####################
library(TVMVP)
library(MASS)
# Will mostly be copying Su and Wang DGP1-6, then two simulated based on real data if I can find data
###############
#### DGP's ####
###############
# Factors
generate_factors <- function(T) {
F1 <- numeric(T)
F2 <- numeric(T)
F1[1] <- rnorm(1, mean = 0, sd = sqrt(1 / (1 - 0.6^2)))
F2[1] <- rnorm(1, mean = 0, sd = sqrt(1 / (1 - 0.3^2)))
for (t in 2:T) {
F1[t] <- 0.6 * F1[t - 1] + rnorm(1, mean = 0, sd = sqrt(1 - 0.6^2))
F2[t] <- 0.3 * F2[t - 1] + rnorm(1, mean = 0, sd = sqrt(1 - 0.3^2))
}
return(cbind(F1, F2))
}
#DGP 1 IID
generate_DGP1 <- function(p, T, F){
X <- matrix(NA, nrow=T, ncol=p)
for (t in 1:T){
Lambda <- MASS::mvrnorm(p, mu=rep(0,2), Sigma = diag(1,2))
e <- rnorm(p, mean=0, sd=1)
X[t,] <- t(Lambda %*% F[t,] + e)
}
return(X)
}
# DGP 2 heteroskedasticity
generate_DGP2 <- function(p, T, F){
X <- matrix(NA, nrow=T, ncol=p)
for (t in 1:T){
Lambda <- MASS::mvrnorm(p, mu=rep(0,2), Sigma = diag(1,2))
sigma_i <- runif(p, 0.5, 1.5)
e <- rnorm(p, mean=0, sd=1)*sigma_i
X[t,] <- t(Lambda %*% F[t,] + e)
}
return(X)
}
# DGP 3 Cross-sectional dependence
generate_DGP3 <- function(p, T, F){
X <- matrix(NA, nrow=T, ncol=p)
for (t in 1:T){
Lambda <- MASS::mvrnorm(p, mu=rep(0,2), Sigma = diag(1,2))
Sigma_e <- outer(1:p, 1:p, function(i, j) 0.5^abs(i-j))
e <- MASS::mvrnorm(1, mu=rep(0,p), Sigma=Sigma_e)
X[t,] <- t(Lambda %*% F[t,] + e)
}
return(X)
}
# DGP 4 Single structural brake
generate_DGP4 <- function(p, T, F, b = 2) {
X <- matrix(NA, nrow=T, ncol=p)
Lambda1 <- matrix(rnorm(p * 2, mean=1, sd=1), ncol = 2)
Lambda2 <- Lambda1 + b
for (t in 1:T) {
if (t <= T/2) {
Lambda <- Lambda1
} else {
Lambda <- Lambda2
}
sigma_i <- runif(p, 0.5, 1.5)
e <- rnorm(p) * sigma_i
X[t, ] <- t(Lambda %*% F[t, ] + e)
}
return(X)
}
# DGP 5 Multiple Structural Breaks
generate_DGP5 <- function(p, T, F, b = 2) {
Lambda_base <- cbind(
rnorm(p, mean = 1, sd = 1), # Column 1
rnorm(p, mean = 0, sd = 1) # Column 2
)
Lambda_plus <- Lambda_base; Lambda_plus[,1] <- Lambda_plus[,1] + 0.5 * b
Lambda_minus <- Lambda_base; Lambda_minus[,1] <- Lambda_minus[,1] - 0.5 * b
X <- matrix(NA, nrow = T, ncol = p)
for (t in seq_len(T)) {
# By default: no shift
Lambda_t <- Lambda_base
if (t > 0.2 * T && t <= 0.4 * T) {
Lambda_t <- Lambda_minus
}
else if (t > 0.6 * T && t <= 0.8 * T) {
Lambda_t <- Lambda_plus
}
e <- rnorm(p, mean = 0, sd = 1)
X[t, ] <- t(Lambda_t %*% F[t, ] + e)
}
return(X)
}
# DGP 6 Smooth Structural Changes I
generate_DGP6 <- function(p, T, F, b = 2) {
X <- matrix(NA, nrow = T, ncol = p)
Lambda1 <- rnorm(p, mean = 0, sd = 1)
G <- function(x, a, b) {
1 / (1 + exp(-a * (x - b)))
}
for (t in seq_len(T)) {
lam2 <- numeric(p)
for (i in seq_len(p)) {
lam2[i] <- b * G(10 * t / T, 2, 5 * i / p + 2)
}
Lambda_t <- cbind(Lambda1, lam2)
e <- rnorm(p, mean = 0, sd = 1)
X[t, ] <- t(Lambda_t %*% F[t, ] + e)
}
return(X)
}
################################################################################
# run simulation for hypothesis test:
library(parallel)
# Set up
set.seed(1337)
T <- 200
p <- 100
R <- 500
m <- 2
B <- 200
# Generate factors
F_t <- generate_factors(T)
##############
# DGP1 #
##############
# Set up a cluster using all available cores
cl <- makeCluster(detectCores()-1)
# Export required functions and objects to the cluster's environment.
# Make sure to include all functions (generate_DGP1, hyptest1, etc.)
# and objects (F_t, T, p, m, B) that will be used inside the worker function.
clusterExport(cl, varlist = c("generate_DGP1", "residuals","sqrt_matrix", "hyptest1", "compute_sigma_0", "silverman", "local_pca", "localPCA", "two_fold_convolution_kernel", "boundary_kernel", "compute_B_pT", "compute_M_hat", "compute_V_pT", "epanechnikov_kernel", "F_t", "T", "p", "m", "B", "R"))
clusterEvalQ(cl, {
library(TVMVP)
library(MASS)
})
start.time <- Sys.time()
# Run the simulation in parallel using parLapply.
# Each worker generates synthetic data and runs the hypothesis test.
results_list_dgp1 <- parLapply(cl, 1:R, function(r) {
# Generate synthetic data for replication r
X_sim <- generate_DGP1(p, T, F_t)
# Run the hypothesis test on the synthetic data
test_result <- hyptest1(X_sim, m, B)
# Return the relevant results as a list
list(
J_NT = test_result$J_NT,
p_value = test_result$p_value,
reject_H0 = test_result$p_value < 0.05
)
})
# Shut down the cluster
stopCluster(cl)
end.time <- Sys.time()
time.taken <- end.time - start.time
time.taken
# Combine the list of results into a data frame
test_results_dgp1 <- do.call(rbind, lapply(results_list_dgp1, as.data.frame))
# Compute the rejection rate
rejection_rate <- mean(test_results_dgp1$reject_H0)
# Print summary statistics and a histogram of p-values
print(summary(test_results_dgp1$p_value))
hist(test_results_dgp1$p_value, breaks = 20, col = "lightblue",
main = "Histogram of p-values", xlab = "p-value", ylab = "Frequency", border = "black")
# Optionally, print the rejection rate
print(sprintf("Rejection rate: %.4f", rejection_rate))
##############
# DGP2 #
##############
# Set up a cluster using all available cores
cl <- makeCluster(detectCores()-1)
# Export required functions and objects to the cluster's environment.
# Make sure to include all functions (generate_DGP1, hyptest1, etc.)
# and objects (F_t, T, p, m, B) that will be used inside the worker function.
clusterExport(cl, varlist = c("generate_DGP2", "residuals","sqrt_matrix", "hyptest1", "compute_sigma_0", "silverman", "local_pca", "localPCA", "two_fold_convolution_kernel", "boundary_kernel", "compute_B_pT", "compute_M_hat", "compute_V_pT", "epanechnikov_kernel", "F_t", "T", "p", "m", "B", "R"))
clusterEvalQ(cl, {
library(TVMVP)
library(MASS)
})
start.time <- Sys.time()
# Run the simulation in parallel using parLapply.
# Each worker generates synthetic data and runs the hypothesis test.
results_list_dgp2 <- parLapply(cl, 1:R, function(r) {
# Generate synthetic data for replication r
X_sim <- generate_DGP2(p, T, F_t)
# Run the hypothesis test on the synthetic data
test_result <- hyptest1(X_sim, m, B)
# Return the relevant results as a list
list(
J_NT = test_result$J_NT,
p_value = test_result$p_value,
reject_H0 = test_result$p_value < 0.05
)
})
# Shut down the cluster
stopCluster(cl)
end.time <- Sys.time()
time.taken <- end.time - start.time
time.taken
# Combine the list of results into a data frame
test_results_dgp2 <- do.call(rbind, lapply(results_list_dgp2, as.data.frame))
# Compute the rejection rate
rejection_rate <- mean(test_results_dgp2$reject_H0)
# Print summary statistics and a histogram of p-values
print(summary(test_results_dgp2$p_value))
hist(test_results_dgp2$p_value, breaks = 20, col = "lightblue",
main = "Histogram of p-values", xlab = "p-value", ylab = "Frequency", border = "black")
# Optionally, print the rejection rate
print(sprintf("Rejection rate: %.4f", rejection_rate))
##############
# DGP3 #
##############
# Set up a cluster using all available cores
cl <- makeCluster(detectCores()-1)
# Export required functions and objects to the cluster's environment.
# Make sure to include all functions (generate_DGP1, hyptest1, etc.)
# and objects (F_t, T, p, m, B) that will be used inside the worker function.
clusterExport(cl, varlist = c("generate_DGP3", "residuals","sqrt_matrix", "hyptest1", "compute_sigma_0", "silverman", "local_pca", "localPCA", "two_fold_convolution_kernel", "boundary_kernel", "compute_B_pT", "compute_M_hat", "compute_V_pT", "epanechnikov_kernel", "F_t", "T", "p", "m", "B", "R"))
clusterEvalQ(cl, {
library(TVMVP)
library(MASS)
})
start.time <- Sys.time()
# Run the simulation in parallel using parLapply.
# Each worker generates synthetic data and runs the hypothesis test.
results_list_dgp3 <- parLapply(cl, 1:R, function(r) {
# Generate synthetic data for replication r
X_sim <- generate_DGP3(p, T, F_t)
# Run the hypothesis test on the synthetic data
test_result <- hyptest1(X_sim, m, B)
# Return the relevant results as a list
list(
J_NT = test_result$J_NT,
p_value = test_result$p_value,
reject_H0 = test_result$p_value < 0.05
)
})
# Shut down the cluster
stopCluster(cl)
end.time <- Sys.time()
time.taken <- end.time - start.time
time.taken
# Combine the list of results into a data frame
test_results_dgp3 <- do.call(rbind, lapply(results_list_dgp3, as.data.frame))
# Compute the rejection rate
rejection_rate <- mean(test_results_dgp3$reject_H0)
# Print summary statistics and a histogram of p-values
print(summary(test_results_dgp3$p_value))
hist(test_results_dgp3$p_value, breaks = 20, col = "lightblue",
main = "Histogram of p-values", xlab = "p-value", ylab = "Frequency", border = "black")
# Optionally, print the rejection rate
print(sprintf("Rejection rate: %.4f", rejection_rate))
##############
# DGP4 #
##############
# Set up a cluster using all available cores
cl <- makeCluster(detectCores()-1)
# Export required functions and objects to the cluster's environment.
# Make sure to include all functions (generate_DGP1, hyptest1, etc.)
# and objects (F_t, T, p, m, B) that will be used inside the worker function.
clusterExport(cl, varlist = c("generate_DGP4", "residuals","sqrt_matrix", "hyptest1", "compute_sigma_0", "silverman", "local_pca", "localPCA", "two_fold_convolution_kernel", "boundary_kernel", "compute_B_pT", "compute_M_hat", "compute_V_pT", "epanechnikov_kernel", "F_t", "T", "p", "m", "B", "R"))
clusterEvalQ(cl, {
library(TVMVP)
library(MASS)
})
start.time <- Sys.time()
# Run the simulation in parallel using parLapply.
# Each worker generates synthetic data and runs the hypothesis test.
results_list_dgp4 <- parLapply(cl, 1:R, function(r) {
# Generate synthetic data for replication r
X_sim <- generate_DGP4(p, T, F_t, b=2)
# Run the hypothesis test on the synthetic data
test_result <- hyptest1(X_sim, m, B)
# Return the relevant results as a list
list(
J_NT = test_result$J_NT,
p_value = test_result$p_value,
reject_H0 = test_result$p_value < 0.05
)
})
# Shut down the cluster
stopCluster(cl)
end.time <- Sys.time()
time.taken <- end.time - start.time
time.taken
# Combine the list of results into a data frame
test_results_dgp4 <- do.call(rbind, lapply(results_list_dgp4, as.data.frame))
# Compute the rejection rate
rejection_rate <- mean(test_results_dgp4$reject_H0)
# Print summary statistics and a histogram of p-values
print(summary(test_results_dgp4$p_value))
hist(test_results_dgp4$p_value, breaks = 20, col = "lightblue",
main = "Histogram of p-values", xlab = "p-value", ylab = "Frequency", border = "black")
# Optionally, print the rejection rate
print(sprintf("Rejection rate: %.4f", rejection_rate))
##############
# DGP5 #
##############
# Set up a cluster using all available cores
cl <- makeCluster(detectCores()-1)
# Export required functions and objects to the cluster's environment.
# Make sure to include all functions (generate_DGP1, hyptest1, etc.)
# and objects (F_t, T, p, m, B) that will be used inside the worker function.
clusterExport(cl, varlist = c("generate_DGP5", "residuals","sqrt_matrix", "hyptest1", "compute_sigma_0", "silverman", "local_pca", "localPCA", "two_fold_convolution_kernel", "boundary_kernel", "compute_B_pT", "compute_M_hat", "compute_V_pT", "epanechnikov_kernel", "F_t", "T", "p", "m", "B", "R"))
clusterEvalQ(cl, {
library(TVMVP)
library(MASS)
})
start.time <- Sys.time()
# Run the simulation in parallel using parLapply.
# Each worker generates synthetic data and runs the hypothesis test.
results_list_dgp5 <- parLapply(cl, 1:R, function(r) {
# Generate synthetic data for replication r
X_sim <- generate_DGP5(p, T, F_t, b=2)
# Run the hypothesis test on the synthetic data
test_result <- hyptest1(X_sim, m, B)
# Return the relevant results as a list
list(
J_NT = test_result$J_NT,
p_value = test_result$p_value,
reject_H0 = test_result$p_value < 0.05
)
})
# Shut down the cluster
stopCluster(cl)
end.time <- Sys.time()
time.taken <- end.time - start.time
time.taken
# Combine the list of results into a data frame
test_results_dgp5 <- do.call(rbind, lapply(results_list_dgp5, as.data.frame))
# Compute the rejection rate
rejection_rate <- mean(test_results_dgp5$reject_H0)
# Print summary statistics and a histogram of p-values
print(summary(test_results_dgp5$p_value))
hist(test_results_dgp5$p_value, breaks = 20, col = "lightblue",
main = "Histogram of p-values", xlab = "p-value", ylab = "Frequency", border = "black")
# Optionally, print the rejection rate
print(sprintf("Rejection rate: %.4f", rejection_rate))
##############
# DGP6 #
##############
# Set up a cluster using all available cores
cl <- makeCluster(detectCores()-1)
# Export required functions and objects to the cluster's environment.
# Make sure to include all functions (generate_DGP1, hyptest1, etc.)
# and objects (F_t, T, p, m, B) that will be used inside the worker function.
clusterExport(cl, varlist = c("generate_DGP6", "residuals","sqrt_matrix", "hyptest1", "compute_sigma_0", "silverman", "local_pca", "localPCA", "two_fold_convolution_kernel", "boundary_kernel", "compute_B_pT", "compute_M_hat", "compute_V_pT", "epanechnikov_kernel", "F_t", "T", "p", "m", "B", "R"))
clusterEvalQ(cl, {
library(TVMVP)
library(MASS)
})
start.time <- Sys.time()
# Run the simulation in parallel using parLapply.
# Each worker generates synthetic data and runs the hypothesis test.
results_list_dgp6 <- parLapply(cl, 1:R, function(r) {
# Generate synthetic data for replication r
X_sim <- generate_DGP6(p, T, F_t, b=2)
# Run the hypothesis test on the synthetic data
test_result <- hyptest1(X_sim, m, B)
# Return the relevant results as a list
list(
J_NT = test_result$J_NT,
p_value = test_result$p_value,
reject_H0 = test_result$p_value < 0.05
)
})
# Shut down the cluster
stopCluster(cl)
end.time <- Sys.time()
time.taken <- end.time - start.time
time.taken
# Combine the list of results into a data frame
test_results_dgp6 <- do.call(rbind, lapply(results_list_dgp6, as.data.frame))
# Compute the rejection rate
rejection_rate <- mean(test_results_dgp6$reject_H0)
# Print summary statistics and a histogram of p-values
print(summary(test_results_dgp6$p_value))
hist(test_results_dgp6$p_value, breaks = 20, col = "lightblue",
main = "Histogram of p-values", xlab = "p-value", ylab = "Frequency", border = "black")
# Optionally, print the rejection rate
print(sprintf("Rejection rate: %.4f", rejection_rate))