print.Kriging | R Documentation |
Kriging
object.Print the content of a Kriging
object.
## S3 method for class 'Kriging'
print(x, ...)
x |
A (S3) |
... |
Ignored. |
String of printed object.
Yann Richet yann.richet@irsn.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)
k <- Kriging(y, X, "matern3_2")
print(k)
## same thing
k
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.