print.summary.lm.spike {BoomSpikeSlab} | R Documentation |
Print a spikeslab object.
## S3 method for class 'summary.lm.spike' print(x, ...) ## S3 method for class 'summary.logit.spike' print(x, ...)
x |
An object of class |
... |
Additional arguments passed to |
This function is called for its side effect, which is to print the
spikeslab
object to the screen.
Steven L. Scott
n <- 100 p <- 10 ngood <- 3 niter <- 1000 sigma <- 2 x <- cbind(1, matrix(rnorm(n * (p-1)), nrow=n)) beta <- c(rnorm(ngood), rep(0, p - ngood)) y <- rnorm(n, x %*% beta, sigma) x <- x[,-1] model <- lm.spike(y ~ x, niter=niter) summary(model)