show | R Documentation |
Show method for gpcm
object. Printing the main features of a GPC model.
show.gpcm(object)
object |
an object of class |
returns an invisible 'NULL'
Morgane MENZ, Céline HELBERT, Victor PICHENY, François BACHOC. Contributors: Naoual SERRAJI.
gpcm()
## 20-points DoE, and the corresponding response
d <- 2
nb_PX <- 20
require(DiceDesign)
x <- lhsDesign(nb_PX, d, seed = 123)$design
require(DiceKriging)
fx <- apply(x, 1, branin)
f <- ifelse(fx < 14, -1, 1)
Xf <- as.matrix(x)
## GPC model
model <- gpcm(f, Xf, coef.m=0, coef.cov=c(0.5,0.5))
## print the result
show(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.