View source: R/NuggetKrigingClass.R
| logMargPost.NuggetKriging | R Documentation | 
Get logMargPost of NuggetKriging Model
## S3 method for class 'NuggetKriging'
logMargPost(object, ...)
| object | An S3 NuggetKriging object. | 
| ... | Not used. | 
The logMargPost computed for fitted
\boldsymbol{theta_alpha}.
Yann Richet yann.richet@asnr.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) + 0.1 * rnorm(nrow(X))
k <- NuggetKriging(y, X, kernel = "matern3_2", objective="LMP")
print(k)
logMargPost(k)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.