predict.SRM_fit {inferCSN}R Documentation

Predict Response

Description

Predicts response for a given sample

Usage

## S3 method for class 'SRM_fit'
predict(object, newx, lambda = NULL, gamma = NULL, ...)

## S3 method for class 'SRM_fit_CV'
predict(object, newx, lambda = NULL, gamma = NULL, ...)

Arguments

object

The output of model.fit

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(fit)

gamma

The value of gamma to use for prediction. A summary of the gammas in the regularization path can be obtained using print(fit)

...

Other parameters

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

Value

Return predict value

Return the predict value


[Package inferCSN version 1.0.3 Index]