Description Usage Arguments Author(s) See Also Examples
Produces a plot of the coefficient paths for a fitted PCLasso
object.
1 2 |
x |
Fitted |
norm |
If TRUE, plot the norm of each group, rather than the individual coefficients. |
... |
Other graphical parameters to |
Wei Liu
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | library("survival")
# load data
data(ExpMatrix)
data(survData)
data(PCGroup)
x <- ExpMatrix
y <- Surv(time=survData[,"time"], event=survData[,"status"])
# fit the PCLasso model
fit1 <- PCLasso(x, y, group = PCGroup, penalty = "grLasso")
# plot the norm of each group
plot(fit1, norm = TRUE)
# plot the individual coefficients
plot(fit1, norm = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.