View source: R/buildGaussianProcessModel.R
buildGaussianProcess | R Documentation |
Gaussian Process Model Interface
buildGaussianProcess(x, y, control = list())
x |
matrix of input parameters. Rows for each point, columns for each parameter. |
y |
one column matrix of observations to be modeled. |
control |
list of control parameters. |
an object of class "spotGaussianProcessModel"
,
with a predict
method and a print
method.
N <- 200 x <- matrix( seq(from=-1, to = 1, length.out = N), ncol = 1) y <- funSphere(x) + rnorm(N, 0, 0.1) fit <- buildGaussianProcess(x,y) ## Print model parameters print(fit) ## Predict at new location xNew <- matrix( c(-0.1, 0.1), ncol = 1) predict(fit, xNew) ## True value at location t(funSphere(xNew))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.