View source: R/buildKrigingDACE.R
buildKrigingDACE | R Documentation |
This Kriging meta model is based on DACE (Design and Analysis of Computer Experiments).
It allows to choose different regression and correlation models. The optimization of model parameters
is by default done with a bounded simplex method from the nloptr
package.
buildKrigingDACE(x, y, control = list())
x |
design matrix (sample locations), rows for each sample, columns for each variable. |
y |
vector of observations at |
control |
(list), with the options for the model building procedure: |
returns an object of class dace
with the following elements:
|
A list, containing model parameters |
|
Estimated likelihood value |
|
activity parameters theta (vector) |
|
exponents p (vector) |
|
nugget value (numeric) |
|
Number of iterations during MLE |
The authors of the original DACE Matlab toolbox
are Hans Bruun Nielsen, Soren Nymand Lophaven and Jacob Sondergaard.
Extension of the Matlab code by Tobias Wagner wagner@isf.de.
Porting and adaptation to R and further extensions by Martin Zaefferer martin.zaefferer@fh-koeln.de.
S.~Lophaven, H.~Nielsen, and J.~Sondergaard. DACE—A Matlab Kriging Toolbox. Technical Report IMM-REP-2002-12, Informatics and Mathematical Modelling, Technical University of Denmark, Copenhagen, Denmark, 2002.
predict.dace
## Create design points x <- cbind(runif(20)*15-5,runif(20)*15) ## Compute observations at design points y <- funSphere(x) ## Create model with default settings fit <- buildKrigingDACE(x,y) ## Print model parameters print(fit) ## Create with different regression and correlation functions fit <- buildKrigingDACE(x,y,control=list(regr=regpoly2,corr=corrspline)) ## Print model parameters print(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.