Learn R Programming

dglars (version 2.1.7)

plot.cvdglars: Plot from a cvdglars Object

Description

Plots the cross-validation curve, and upper and lower standard deviation curves, as a function of the used \(\gamma\) values.

Usage

# S3 method for cvdglars
plot(x, ...)

Arguments

x

fitted cvdglars object.

...

additional graphical parameters to plot.

Author

Luigi Augugliaro
Maintainer: Luigi Augugliaro luigi.augugliaro@unipa.it

Details

A plot for a cvdglars object is produced.

The plot shows the curve of the cross-validation deviance and the upper and lower standard deviation curves. A vertical dashed red line is used the indetify the value of the \(\gamma\) parameter corresponding to the minimum of the cross-validation deviance.

See Also

cvdglars function.

Examples

Run this code
###########################
# Logistic regression model
# y ~ Binomial
set.seed(123)
n <- 100
p <- 100
X <- matrix(rnorm(n*p), n, p)
b <- 1:2
eta <- b[1] + X[,1] * b[2]
mu <- binomial()$linkinv(eta)
y <- rbinom(n, 1, mu)
fit_cv <- cvdglars.fit(X, y, family = binomial)
plot(fit_cv)

Run the code above in your browser using DataLab