plotCoefs: plotting function to investigate estimated coefficients

Description Usage Arguments Examples

View source: R/treePlot.R

Description

plotting function to investigate estimated coefficients

Usage

1
plotCoefs(object, s = NULL, ...)

Arguments

object

fitted vennLasso object

s

lambda value for the predictions. Only one can be specified at a time

...

other graphical parameters for the plot

Examples

1
2
3
4
5
6
7
set.seed(123)

dat.sim <- genHierSparseData(ncats = 3, nvars = 25, nobs = 200)

fit <- vennLasso(x = dat.sim$x, y = dat.sim$y, groups = dat.sim$group.ind)

plotCoefs(fit, s = fit$lambda[22])

vennLasso documentation built on July 1, 2020, 7:11 p.m.