predict.FRK {autoFRK} | R Documentation |
Predict method for Fixed Rank Kriging
Description
Predicted values and estimate of standard errors based on an "autoFRK
" model object.
Usage
## S3 method for class 'FRK'
predict(
object,
obsData = NULL,
obsloc = NULL,
mu.obs = 0,
newloc = obsloc,
basis = NULL,
mu.new = 0,
se.report = FALSE,
...
)
Arguments
object |
a model object obtained from " |
obsData |
a vector with observed data used for prediction.
Default is |
obsloc |
a matrix with rows being coordinates of observation locations for |
mu.obs |
a vector or scalar for the deterministic mean values at |
newloc |
a matrix with rows being coordinates of new locations for prediction.
Default is |
basis |
a matrix with each column being a basis function taken values at |
mu.new |
a vector or scalar for the deterministic mean values at |
se.report |
logical; if |
... |
not used but needed for the S3 generic/method compatibility. |
Value
A list with the components described below.
pred.value |
a matrix with the (i,t) element being the predicted value at i-th location and time t. |
se |
a vector with the i-th element being the standard error of the predicted value at the i-th location. |
Author(s)
ShengLi Tzeng and Hsin-Cheng Huang.