Plot the models trained by a ptLasso object
plot.ptLasso.Rd
A plot is produced, and nothing is returned.
Usage
# S3 method for class 'ptLasso'
plot(x, ...)
Examples
set.seed(1234)
out = gaussian.example.data()
x = out$x; y=out$y; groups = out$group
fit = ptLasso(x, y, groups = groups, alpha = 0.5, family = "gaussian", type.measure = "mse")
plot(fit)