EzGP_predict {EzGP} | R Documentation |
EzGP
ModelPredicts the output of the EzGP model fitted by EzGP_fit
.
EzGP_predict(X_new, model, MSE_on = 0)
X_new |
Matrix or vector containing the input(s) where the predictions are to be made. Each row is an input vector. |
model |
The EzGP model fitted by |
MSE_on |
A scalar indicating whether the uncertainty (i.e., mean squared error |
A prediction list containing the following components:
Y_hat
A vector containing the prediction values
MSE
A vector containing the prediction uncertainty (i.e., the covariance or covariance matrix for the output(s) at prediction location(s))
"EzGP: Easy-to-Interpret Gaussian Process Models for Computer Experiments with Both Quantitative and Qualitative Factors", Qian Xiao, Abhyuday Mandal, C. Devon Lin, and Xinwei Deng (doi:10.1137/19M1288462)
EzGP_fit
to fit EzGP model for the datasets.
# see the examples in the documentation of the function EzGP_fit.