blup | R Documentation |
Best Linear Unbiased Prediction in R-separable Model
blup(Xnew, Res, I, J, eps)
Xnew |
new observation to be predicted, given as a matrix |
Res |
list of 3, R-separable covariance estimated by |
I |
indices of unobserved rows |
J |
indices of unobserved columns |
eps |
ridge regularization constant |
prediction o Xnew
given as a matrix
X <- array(runif(20*3*4),c(20,3,4)) Res <- scd_est(X,2) Xnew <- array(runif(3*4), c(3,4)) blup(Xnew, Res, 3, 4, 1e-5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.