plotting function to investigate estimated coefficients
plotCoefs(object, s = NULL, ...)
object | fitted vennLasso object |
---|---|
s | lambda value for the predictions. Only one can be specified at a time |
... | other graphical parameters for the plot |
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])