predict.sgpls {spls} | R Documentation |
Make predictions or extract coefficients from a fitted SGPLS model
Description
Make predictions or extract coefficients from a fitted SGPLS object.
Usage
## S3 method for class 'sgpls'
predict( object, newx, type = c("fit","coefficient"),
fit.type = c("class","response"), ... )
## S3 method for class 'sgpls'
coef( object, ... )
Arguments
object |
A fitted SGPLS object. |
newx |
If |
type |
If |
fit.type |
If |
... |
Any arguments for |
Details
Users can input either only selected variables or all variables for newx
.
Value
Matrix of coefficient estimates if type="coefficient"
.
Matrix of predicted responses if type="fit"
(responses will be predicted classes if fit.type="class"
or predicted probabilities if fit.type="response"
).
Author(s)
Dongjun Chung and Sunduz Keles.
References
Chung D and Keles S (2010), "Sparse partial least squares classification for high dimensional data", Statistical Applications in Genetics and Molecular Biology, Vol. 9, Article 17.
See Also
Examples
data(prostate)
# SGPLS with eta=0.55 & 3 hidden components
f <- sgpls( prostate$x, prostate$y, K=3, eta=0.55, scale.x=FALSE )
# Print out coefficients
coef.f <- coef(f)
coef.f[ coef.f!=0, ]
# Prediction on the training dataset
(pred.f <- predict( f, type="fit" ))