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

View source: R/KrigingClass.R

save.KrigingR Documentation

Save a Kriging Model to a file storage

Description

Save a Kriging Model to a file storage

Usage

## S3 method for class 'Kriging'
save(object, filename, ...)

Arguments

object

An S3 Kriging object.

filename

File name to save in.

...

Not used.

Value

The loaded Kriging object.

Author(s)

Yann Richet yann.richet@irsn.fr

Examples

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.h5") 
save(k,outfile)

rlibkriging documentation built on July 9, 2023, 5:53 p.m.