predict.gpls | R Documentation |
A simple prediction method for gpls
objects.
## S3 method for class 'gpls'
predict(object, newdata, ...)
object |
A |
newdata |
New data, for which predictions are desired. |
... |
Other arguments to be passed on |
The prediction method is straight forward. The estimated coefficients
from object
are used, together with the new data to produce
predicted values. These are then split, according to whether the
predicted values is larger or smaller than 0.5 and predictions
returned.
The code is similar to that in glpls1a.train.test.error
except that in that function both the test and train matrices are
centered and scaled (the covariates) by the same values (those from
the test data set).
A list
of length two:
class |
The predicted classes; one for each row of |
predicted |
The estimated predictors. |
B. Ding and R. Gentleman
gpls
example(gpls)
p1 = predict(m1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.