show {GPCsign} | R Documentation |
Print values of a Gaussian Process Classification (GPC) model
Description
Show method for gpcm
object. Printing the main features of a GPC model.
Usage
show.gpcm(object)
Arguments
object |
an object of class |
Value
returns an invisible 'NULL'
Author(s)
Morgane MENZ, Céline HELBERT, Victor PICHENY, François BACHOC. Contributors: Naoual SERRAJI.
See Also
Examples
## 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)
[Package GPCsign version 0.1.1 Index]