plotSelections: plotting function to investigate hierarchical structure of...

Description Usage Arguments Examples

View source: R/treePlot.R

Description

plotting function to investigate hierarchical structure of selection

Usage

1
plotSelections(object, s = NULL, type = c("d3.tree"), ...)

Arguments

object

fitted vennLasso object

s

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

type

type of plot to make. Currently only "d3.tree" and "igraph.tree" available

...

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)

plotSelections(fit, s = fit$lambda[32])

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