Description Usage Arguments Value Author(s) See Also Examples
Make predictions on new data by fitted enspls.fit object.
1 2 3 |
object |
An object of class |
newx |
New data to predict with. |
method |
Use |
... |
Additional parameters for |
A numeric vector containing the predicted values.
Nan Xiao <https://nanx.me>
See enspls.fit
for fitting ensemble sparse
partial least squares regression models.
1 2 3 4 5 6 7 8 9 10 11 12 | data("logd1k")
x <- logd1k$x
y <- logd1k$y
set.seed(42)
fit <- enspls.fit(x, y, reptimes = 5, maxcomp = 2)
y.pred <- predict(fit, newx = x)
plot(y, y.pred, xlim = range(y), ylim = range(y))
abline(a = 0L, b = 1L)
y.pred.med <- predict(fit, newx = x, method = "median")
plot(y, y.pred.med, xlim = range(y), ylim = range(y))
abline(a = 0L, b = 1L)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.