getLamPath | R Documentation |
Generate a lambda path sequence in descending order, equally or log-spaced.
getLamPath(max, min, len, log = FALSE)
max |
numeric, maximum lambda value |
min |
numeric, minimum lambda value |
len |
numeric/int, length of lambda path |
log |
logical, should the lambda path be log-spaced |
numeric vector of lambdas
getMaxCov
## Generate the data with huge:
library(huge)
set.seed(10010)
p <- 40 ; n <- 100
dat <- huge.generator(n, p, "hub", verbose=FALSE, v=.1, u=.3)
## Theoretical lamda max is the maximum abs value of the empirical covariance matrix
maxCov <- getMaxCov(dat$data)
lams <- getLamPath(maxCov, 5e-2*maxCov, len=40)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.