load: Load any Kriging Model from a file storage. Back to...

View source: R/allGenerics.R

loadR Documentation

Load any Kriging Model from a file storage. Back to base::load if not a Kriging object.

Description

Load any Kriging Model from a file storage. Back to base::load if not a Kriging object.

Usage

load(filename, ...)

Arguments

filename

A file holding any Kriging object.

...

Arguments used by base::load.

Value

The loaded "*"Kriging object, or nothing if base::load is used (update parent environment).

Author(s)

Yann Richet yann.richet@asnr.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.json") 
save(k,outfile)

print(load(outfile))

rlibkriging documentation built on Aug. 27, 2025, 5:11 p.m.