Predicts response for a given sample
Usage
# S3 method for class 'srm'
predict(object, newx, lambda = NULL, gamma = NULL, ...)
# S3 method for class 'srm_cv'
predict(object, newx, lambda = NULL, gamma = NULL, ...)
Arguments
- object
The output of sparse_regression.
- newx
A matrix on which predictions are made. The matrix should have p columns
- lambda
The value of lambda to use for prediction.
A summary of the lambdas in the regularization path can be obtained using print.srm
.
- gamma
The value of gamma to use for prediction.
A summary of the gammas in the regularization path can be obtained using print.srm
.
- ...
Other parameters
Value
Return predict value
Details
If both lambda and gamma are not supplied,
then a matrix of predictions for all the solutions in the regularization path is returned.
If lambda is supplied but gamma is not, the smallest value of gamma is used.
In case of logistic regression, probability values are returned.