Learn R Programming

rlibkriging (version 0.9-1)

save.NuggetKriging: Save a NuggetKriging Model to a file storage

Description

Save a NuggetKriging Model to a file storage

Usage

# S3 method for NuggetKriging
save(object, filename, ...)

Value

The loaded NuggetKriging object.

Arguments

object

An S3 NuggetKriging object.

filename

File name to save in.

...

Not used.

Author

Yann Richet yann.richet@irsn.fr

Examples

Run this code
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) + 0.1 * rnorm(nrow(X))
points(X, y, col = "blue")

k <- NuggetKriging(y, X, "matern3_2")
print(k)

outfile = tempfile("k.json") 
save(k,outfile)

Run the code above in your browser using DataLab