plot,fgpm-method | R Documentation |
"fgpm"
This method provides a diagnostic plot for the validation of regression models. It displays a calibration plot based on the leave-one-out predictions of the output at the points used to train the model.
## S4 method for signature 'fgpm'
plot(x, y = NULL, ...)
x |
A |
y |
Not used. |
... |
Graphical parameters. These currently include
|
Plot the Leave-One-Out (LOO) calibration.
# generating input and output data for training
set.seed(100)
n.tr <- 25
sIn <- expand.grid(x1 = seq(0,1,length = sqrt(n.tr)),
x2 = seq(0, 1, length = sqrt(n.tr)))
fIn <- list(f1 = matrix(runif(n.tr*10), ncol = 10),
f2 = matrix(runif(n.tr*22), ncol = 22))
sOut <- fgp_BB3(sIn, fIn, n.tr)
# building the model
m1 <- fgpm(sIn = sIn, fIn = fIn, sOut = sOut)
# plotting the model
plot(m1)
# change some graphical parameters if wanted
plot(m1, line = "SpringGreen3" ,
pch = 21, pt.col = "orangered", pt.bg = "gold",
main = "LOO cross-validation")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.