logMargPost.NuggetKriging: Get logMargPost of NuggetKriging Model

View source: R/NuggetKrigingClass.R

logMargPost.NuggetKrigingR Documentation

Get logMargPost of NuggetKriging Model

Description

Get logMargPost of NuggetKriging Model

Usage

## S3 method for class 'NuggetKriging'
logMargPost(object, ...)

Arguments

object

An S3 NuggetKriging object.

...

Not used.

Value

The logMargPost computed for fitted \boldsymbol{theta_alpha}.

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) + 0.1 * rnorm(nrow(X))

k <- NuggetKriging(y, X, kernel = "matern3_2", objective="LMP")
print(k)

logMargPost(k)

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