save.Kriging | R Documentation |
Save a Kriging Model to a file storage
## S3 method for class 'Kriging'
save(object, filename, ...)
object |
An S3 Kriging object. |
filename |
File name to save in. |
... |
Not used. |
The loaded Kriging object.
Yann Richet yann.richet@irsn.fr
f <- function(x) 1 - 1 / 2 * (sin(12 * x) / (1 + x) + 2 * cos(7 * x) * x^5 + 0.7)
set.seed(123)
X <- as.matrix(runif(10))
y <- f(X)
k <- Kriging(y, X, kernel = "matern3_2", objective="LMP")
print(k)
outfile = tempfile("k.json")
save(k,outfile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.