predict.sparsestep {sparsestep} | R Documentation |
Make predictions from a SparseStep model
Description
Predicts the outcome variable for the SparseStep model for each value of lambda supplied to the model.
Usage
## S3 method for class 'sparsestep'
predict(object, newx, ...)
Arguments
object |
Fitted |
newx |
Matrix of new values for |
... |
further argument are ignored |
Value
a matrix of numerical predictions of size nobs x nlambda
Author(s)
Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons
Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com>
References
Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). SparseStep: Approximating the Counting Norm for Sparse Regularization, arXiv preprint arXiv:1701.06967 [stat.ME]. URL https://arxiv.org/abs/1701.06967.
Examples
x <- matrix(rnorm(100*20), 100, 20)
y <- rnorm(100)
fit <- sparsestep(x, y)
yhat <- predict(fit, x)
[Package sparsestep version 1.0.1 Index]