
Last chance! 50% off unlimited learning
Sale ends in
Plot coefficient profiles along the forward stepwise path
# S3 method for fs
plot (x, breaks=TRUE, omit.zeros=TRUE, var.labels=TRUE, ...)
Object returned by a call to fs
function
Should vertical lines be drawn at each break point in the piecewise linear coefficient paths? Default is TRUE
Should segments of the coefficients paths that are equal to zero be omitted (to avoid clutter in the figure)? Default is TRUE
Should paths be labelled with corresponding variable numbers? Default is TRUE
Additional arguments for plotting
# NOT RUN {
set.seed(33)
n = 50
p = 10
sigma = 1
x = matrix(rnorm(n*p),n,p)
beta = c(3,2,rep(0,p-2))
y = x%*%beta + sigma*rnorm(n)
# run forward stepwise, plot results
fsfit = fs(x,y)
plot(fsfit)
# }
Run the code above in your browser using DataLab