library(NPRED)
<- par()
op require(zoo)
#> Loading required package: zoo
#>
#> Attaching package: 'zoo'
#> The following objects are masked from 'package:base':
#>
#> as.Date, as.Date.numeric
require(ggplot2)
#> Loading required package: ggplot2
set.seed(2020)
# AR1 model from paper with 9 dummy variables
<- data.gen.ar1(500)
data.ar1
# AR4 model from paper with total 9 dimensions
<- data.gen.ar4(500)
data.ar4
# AR9 model from paper with total 9 dimensions
<- data.gen.ar9(500)
data.ar9
plot.zoo(cbind(data.ar1$x, data.ar4$x, data.ar9$x),
xlab = NA, main = "Example of AR models",
ylab = c("AR1", "AR4", "AR9"))
Figure 1.1: Example of AR models
# R version of pic
pic.calc(data.ar9$x, data.ar9$dp)
#> $pmi
#> [1] 0.01667864 -0.01345925 0.03862148 0.33933764 -0.01281137 0.01703449
#> [7] 0.04359516 0.07521345 0.07754585
#>
#> $pic
#> [1] 0.1811272 0.0000000 0.2726446 0.7019341 0.0000000 0.1830168 0.2889591
#> [8] 0.3737103 0.3790295
# fortran version of pic
calc.PIC(data.ar9$x, data.ar9$dp)
#> $pmi
#> [1] -0.003200178 -0.030318462 0.030197035 0.343560072 -0.019053916
#> [6] 0.010659037 0.046381753 0.068540976 0.059103240
#>
#> $pic
#> [1] 0.0000000 0.0000000 0.2420878 0.7049662 0.0000000 0.1452324 0.2976424
#> [8] 0.3579123 0.3338973
# pic <- stepwise.PIC(data.ar1$x, data.ar1$dp)
# pic <- stepwise.PIC(data.ar4$x, data.ar4$dp)
<- stepwise.PIC(data.ar9$x, data.ar9$dp)
pic
pic#> $cpy
#> [1] 4 9 1
#>
#> $cpyPIC
#> [1] 0.7019341 0.5358898 0.3475098
#>
#> $wt
#> [1] 0.4708906 0.3340259 0.1950835
#>
#> $lstwet
#> Intercept X1 X2 X3
#> 0.02092053 0.61892085 0.49902045 0.26565225
#>
#> $icpy
#> [1] 3
# R version of pw
pw.calc(data.ar9$x, data.ar9$dp, pic$cpy, pic$cpyPIC)
#> $pw
#> [1] 0.4708906 0.3340259 0.1950835
# fortran version of pw
calc.PW(data.ar9$x, data.ar9$dp, pic$cpy, pic$cpyPIC)
#> $pw
#> [1] 0.6371889 0.4519895 0.2639787
data("data3")
<- ts(data3[, 1]) # response
x <- ts(data3[, -1]) # possible predictors
z <- ts(data.gen.ar1(500, ndim = 15)$dp) # new input
zout
<- xhat2 <- x
xhat1 # xhat1 <- NPRED::knn(x,z,zout,k=5,reg=T,extrap=F)
# xhat2 <- NPRED::knn(x,z,zout,k=5,reg=T,extrap=T)
for (i in 1:500) {
<- NPRED::knn(x[-i], z[-i, ], z[i, ], extrap = F)
xhat1[i] <- NPRED::knn(x[-i], z[-i, ], z[i, ], extrap = T)
xhat2[i]
}
if (TRUE) {
par(mfrow = c(1, 2), pty = c("s"))
ts.plot(x, xhat1, xhat2, col = c("black","red","blue"), ylim = c(-10, 10), lwd = c(1, 1, 1))
legend("topleft",
bty = "n", lwd = 3, cex = 1, lty = 1,
# inset = c(-0.5, 0),
legend = c("OBS", "Pred", "Pred(extrap=T)"),
x.intersp = 0, xjust = 0, yjust = 0, text.width = c(0, 50, 50), horiz = T,
col = c("black","red","blue")
)
plot(xhat1, xhat2, xlim = c(-10, 10), ylim = c(-10, 10))
abline(coef = c(0, 1), lwd = 1, col = 2)
}
Figure 5.1: Example of KNN implemented in NPRED
par(op)
#> Warning in par(op): graphical parameter "cin" cannot be set
#> Warning in par(op): graphical parameter "cra" cannot be set
#> Warning in par(op): graphical parameter "csi" cannot be set
#> Warning in par(op): graphical parameter "cxy" cannot be set
#> Warning in par(op): graphical parameter "din" cannot be set
#> Warning in par(op): graphical parameter "page" cannot be set
<- 500
sample <- 0
k <- runif(sample, 0, 5 * pi)
u <- sin(u) + rnorm(sample, sd = 0.2)
z
<- cbind(u, runif(sample, 0, 5 * pi), runif(sample, 0, 5 * pi), runif(sample, 0, 5 * pi))
u1 # zhat1 <- knnregl1cv(x=z, z=u1, k=k)
<- sapply(1:sample, function(i) knn(x = z[-i], z = u1[-i, ], zout = u1[i, ], k = k))
zhat1
<- stepwise.PIC(x = z, py = u1)
sel
sel#> $cpy
#> [1] 1
#>
#> $cpyPIC
#> u
#> 0.2559138
#>
#> $wt
#> u
#> 1
#>
#> $lstwet
#> Intercept X
#> 0.17620490 0.00959311
#>
#> $icpy
#> [1] 1
# zhat2 <- knnregl1cv(x=z, z=u1[,sel$cpy], k=k)
<- sapply(1:sample, function(i) knn(x = z[-i], z = u1[-i, sel$cpy], zout = u1[i, sel$cpy], k = k))
zhat2
if (TRUE) {
plot(u, z, pch = 16)
lines(sort(u), zhat1[order(u)], col = "green")
lines(sort(u), zhat2[order(u)], col = "red")
abline(a = 0, b = 0)
}
Figure 6.1: Illustration of the usage of partial weights