R/boot.pois.env.R

Defines functions boot.pois.env

Documented in boot.pois.env

boot.pois.env <- function(X, Y, u, B) {
  X <- as.matrix(X)
  Y <- as.matrix(Y)
  a <- dim(Y)
  n <- a[1]
  r <- a[2]
  p <- ncol(X)
  bootenv <- function(i) {
    sam <- sample(1:n, n, replace = T)
    Y.boot <- Y[sam]
    X.boot <- X[sam, ]
    return(c(pois.env(X.boot, Y.boot, u, asy = F)$beta))
  }
  bootbeta <- lapply(1:B, function(i) bootenv(i))
  bootbeta <- matrix(unlist(bootbeta), nrow = B, byrow = TRUE)
  bootse <- matrix(apply(bootbeta, 2, stats::sd), nrow = p)
  return(bootse)
}

Try the Renvlp package in your browser

Any scripts or data that you put into this service are public.

Renvlp documentation built on Oct. 11, 2023, 1:06 a.m.