Predict Method for Pcreg.
Prediction for models fit using pcreg()
.
## S3 method for class 'pcreg' predict(object, newdata, ...)
object |
the S3 class object produced as output from the function pcreg() |
newdata |
dataframe with new data and with same column names as used in the original argument to pcreg. |
... |
additional arguments |
The prediction method, predict.mvr()
, which is available in the pls
package is used.
We take advantage of this since it avoids fussing with scaling issues
since it is automatically handled
for us by predict.mvr()
the predicted values
A. I. McLeod
XyList <- trainTestPartition(mcdonald) XyTr <- XyList$XyTr XyTe <- XyList$XyTe ans <- pcreg(XyTr, scale=TRUE) predict(ans, newdata=XyTe)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.