View source: R/estimate_covariance.R
predict_covariance | R Documentation |
This function estimates the covariance matrix on a vector of
sampling points. The covariance
matrix parameter has to be larger
than the vector of sampling points.
predict_covariance(t, covariance)
t |
Vector of sampling points. |
covariance |
Matrix of covariance. |
A matrix of covariance estimated on a vector of sampling points.
## Not run: if(interactive()){ attach(powerconsumption) covariance <- learn_covariance(powerconsumption, 'lm') cov <- predict_covariance(t = seq(0, 1, length.out = 101), covariance = covariance) } ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.