predict.ernet: Make predictions from an ernet object

View source: R/predict.ernet.R

predict.ernetR Documentation

Make predictions from an ernet object

Description

Similar to other predict methods, this functions predicts fitted values from a fitted ernet object.

Usage

## S3 method for class 'ernet'
predict(object, newx, s = NULL, type = "response", ...)

Arguments

object

fitted ernet model object.

newx

matrix of new values for x at which predictions are to be made. NOTE: newx must be a matrix, predict function does not accept a vector or other formats of newx.

s

value(s) of the penalty parameter lambda at which predictions are to be made. Default is the entire sequence used to create the model.

type

type of prediction required. Only response is available. Gives predicted response for regression problems.

...

Not used. Other arguments to predict.

Details

s is the new vector at which predictions are to be made. If s is not in the lambda sequence used for fitting the model, the predict function will use linear interpolation to make predictions. The new values are interpolated using a fraction of predicted values from both left and right lambda indices.

Value

The object returned depends on type.

Author(s)

Yuwen Gu and Hui Zou

Maintainer: Yuwen Gu <yuwen.gu@uconn.edu>

See Also

ernet, coef.ernet, plot.ernet, print.ernet


SALES documentation built on Aug. 16, 2022, 1:05 a.m.

Related to predict.ernet in SALES...