Learn R Programming

gamsel (version 1.8-5)

summary.gamsel: Gamsel summary routine

Description

This makes a two-panel plot of the gamsel object.

Usage

# S3 method for gamsel
summary(object, label = FALSE, ...)

Value

Nothing is returned.

Arguments

object

gamsel object

label

if TRUE, annotate the plot with variable labels. Default is FALSE

...

additional arguments to summary

Author

Alexandra Chouldechova and Trevor Hastie
Maintainer: Trevor Hastie hastie@stanford.edu

Details

A two panel plot is produced, that summarizes the linear components and the nonlinear components, as a function of lambda. For the linear components, it is the coefficient for each variable. For the nonlinear, we see the norm of the nonlinear coefficients.

References

Chouldechova, A. and Hastie, T. (2015) Generalized Additive Model Selection

See Also

gamsel, and methods plot, print and predict for cv.gamsel object.

Examples

Run this code

##data=gamsel:::gendata(n=500,p=12,k.lin=3,k.nonlin=3,deg=8,sigma=0.5)
data = readRDS(system.file("extdata/gamsel_example.RDS", package = "gamsel"))
attach(data)
bases=pseudo.bases(X,degree=10,df=6)
# Gaussian gam
gamsel.out=gamsel(X,y,bases=bases)
par(mfrow=c(1,2),mar=c(5,4,3,1))
summary(gamsel.out)

Run the code above in your browser using DataLab