summary.bolasso: Summarise a 'bolasso'

Description Usage Arguments Value Examples

View source: R/constructor.R

Description

The summary of a bolasso is structured as a tbl. Every row of the tbl represents a feature and it always has 4 columns:

Usage

1
2
## S3 method for class 'bolasso'
summary(model)

Arguments

model

bolasso object to summarise

Value

A tbl with summary information of a bolasso object.

Examples

1
2
3
4
5
6
7
predictors <- mtcars[,c("mpg", "disp", "hp", "drat", "wt")]
outcome <- mtcars[, "vs"]


mod <- bolasso(predictors, outcome, n_bootstraps = 10)

summary(mod)

david26694/bolasso documentation built on Nov. 4, 2019, 9:43 a.m.