summaryrefslogtreecommitdiff
path: root/R/rsc_cv.R
blob: 4153322616a8eaa0610b72badbbb64fa0958ca74 (plain)
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
rsc_cv <- function(x, cv.type = "kfold", R = 10, K = 10, threshold = seq(0.05, 0.95, 
  by = 0.025), even.correction = FALSE, na.rm = FALSE, ncores = NULL, monitor = TRUE) {
  dat <- .check_input_data_matrix(x = x, y = NULL, na.rm = na.rm)
  colnames_original <- colnames(dat)
  storage.mode(dat) <- "double"
  n <- as.integer(nrow(dat))
  p <- as.integer(ncol(dat))
  nc <- as.integer({
    p^2 - p
  }/2)
  if ({
    cv.type != "random"
  } & {
    cv.type != "kfold"
  }) {
    stop("\"cv.type\" must be either \"random\" (default)  or \"kfold\"")
  }
  if (!is.numeric(R)) {
    stop("\"R\" must be an integer > 1")
  }
  else if (R < 1) {
    stop("\"R\" must be an integer > 1")
  }
  if (!is.numeric(K)) {
    stop("\"K\" must be an integer > 1")
  }
  else if (R < 1) {
    stop("\"K\" must be an integer > 1")
  }
  if (length(threshold) == 1) {
    if (threshold <= 0 | threshold >= 1) {
      stop("\"threshold\" value does not belong to the interval (0,1).")
    }
  }
  else if (length(threshold) > 1) {
    if (any(threshold < 0) | any(threshold >= 1)) {
      stop("Some of the \"threshold\" values do not belong to the interval (0,1).")
    }
    grid.length <- length(threshold)
  }
  if (even.correction) {
    evencorrection <- 1L
  }
  else {
    evencorrection <- 0L
  }
  if (is.null(ncores)) {
    DetectedCores <- detectCores()
    if (DetectedCores <= 2) {
      ncores <- 1
    }
    else {
      ncores <- {
        DetectedCores - 1
      }
    }
  }
  else {
    ncores <- as.integer(ncores)
    if (ncores <= 0) {
      stop("\"ncores\" must be an integer larger or equal to 1.")
    }
  }
  if (monitor) {
    cat("\n")
    message("Computing the RMAD matrix")
    t0 <- Sys.time()
  }
  rmad_vec <- .Fortran("cormadvecdp", matrix = dat, nrow = n, ncol = p, res = numeric(nc), 
    ressize = nc, correcteven = evencorrection, PACKAGE = "RSC")$res
  if (monitor) {
    t1 <- Sys.time()
    dt01 <- difftime(t1, t0, units = "auto")
    message("* RMAD computing time:...... ", round(dt01, 2), " [", attributes(dt01)$units, 
      "]")
  }
  if (cv.type == "random") {
    if (monitor) {
      cat("\n")
      message("Performing cross-validation")
      t_hat <- round(1.2 * {
        {
          dt01 * R * 2
        }/ncores
      }, 2)
      message("* predicted end time (worst case):...... ", Sys.time() + t_hat)
    }
    n1 <- n - floor(n/log(n))
    IDX <- array(FALSE, dim = c(R, n))
    for (r in 1:R) {
      IDX[r, ][sample(1:n, size = n1, replace = FALSE)] <- TRUE
    }
    registerDoParallel(ncores)
    U <- foreach(r = 1:R) %dopar% {
      .cv_loss(idx = IDX[r, ], dat = dat, evencorrection = evencorrection, 
        threshold = threshold, grid.length = grid.length, p = p, nc = nc)
    }
    stopImplicitCluster()
    LOSS <- array(0, dim = c(R, grid.length))
    for (r in 1:R) {
      LOSS[r, ] <- U[[r]]
    }
    avg_loss <- apply(LOSS, 2, mean)
    se_loss <- apply(LOSS, 2, sd)/sqrt(R)
  }
  if (cv.type == "kfold") {
    if (monitor) {
      cat("\n")
      message("Performing cross-validation")
      t_hat <- round(1.2 * {
        {
          dt01 * R * K * 2
        }/ncores
      }, 2)
      message("* predicted end time (worst case):...... ", Sys.time() + t_hat)
    }
    idx_fold <- cut(1:n, breaks = K, labels = FALSE)
    IDX <- array(TRUE, dim = c(R * K, n))
    row_count <- 1L
    for (r in 1:R) {
      idx_fold_shuffle <- sample(idx_fold, size = n, replace = FALSE)
      for (k in 1:K) {
        IDX[row_count, ][idx_fold_shuffle == k] <- FALSE
        row_count <- 1L + row_count
      }
    }
    registerDoParallel(ncores)
    U <- foreach(r = 1:{
      R * K
    }) %dopar% {
      .cv_loss(idx = IDX[r, ], dat = dat, evencorrection = evencorrection, 
        threshold = threshold, grid.length = grid.length, p = p, nc = nc)
    }
    stopImplicitCluster()
    if (R == 1) {
      LOSS <- array(0, dim = c(K, grid.length))
      for (k in 1:K) {
        LOSS[k, ] <- U[[k]]
      }
    }
    else {
      LOSS <- array(0, dim = c(K, grid.length, R))
      dimnames(LOSS)[[3]] <- paste0("r", 1:R)
      dimnames(LOSS)[[1]] <- paste0("k", 1:K)
      row_count <- 1L
      for (r in 1:R) {
        for (k in 1:K) {
          LOSS[k, , r] <- U[[row_count]]
          row_count <- 1L + row_count
        }
      }
    }
    avg_loss_r <- sd_loss_r <- matrix(0, nrow = R, ncol = grid.length)
    for (r in 1:R) {
      avg_loss_r[r, ] <- apply(LOSS[, , r], 2, mean)
      sd_loss_r[r, ] <- apply(LOSS[, , r], 2, sd)/sqrt(K)
    }
    avg_loss <- apply(avg_loss_r, 2, mean)
    se_loss <- apply(sd_loss_r, 2, mean)
    if (monitor) {
      t2 <- Sys.time()
      dt02 <- difftime(t2, t0, units = "auto")
    }
  }
  if (monitor) {
    message("* finished on:.......................... ", Sys.time())
  }
  tstar <- which.min(avg_loss)
  flags <- rep("", grid.length)
  a <- avg_loss[tstar] - se_loss[tstar]
  b <- avg_loss[tstar] + se_loss[tstar]
  flags[{
    avg_loss >= a
  } & {
    avg_loss <= b
  }] <- "*"
  flags[tstar] <- "minimum"
  res <- data.frame(Threshold = threshold, Average = avg_loss, SE = se_loss, Flag = flags)
  ans <- list(rmadvec = rmad_vec, varnames = colnames_original, loss = res, minimum = threshold[tstar], 
    minimum1se = max(threshold[avg_loss >= a & avg_loss <= b]))
  class(ans) <- "rsc_cv"
  return(ans)
}