scam.check | R Documentation |
Takes a fitted scam
object produced by scam()
and produces some diagnostic information
about the fitting procedure and results. This function is almost the same as gam.check
of the mgcv
library. The default is to produce four residual plots and some information about the
convergence of the smoothness selection optimization.
scam.check(b,type=c("deviance","pearson","response"),old.style=FALSE, pch=".",
rep=0, level=.9, rl.col=3, rep.col="gray80",...)
b |
a fitted |
old.style |
produces qq-norm plots as it was in scam versions < 1.2-15 when set to |
type |
type of residuals, see |
rep , level , rep.col |
arguments passed to |
rl.col |
color for the reference line on the quantile-quantile plot. |
pch |
plot character to use for the quantile-quantile plot. |
... |
extra graphics parameters to pass to plotting functions. |
As for mgcv(gam)
plots 4 standard diagnostic plots, and some other
convergence diagnostics. The
printed information relates to the optimization process used to select smoothing
parameters.
Natalya Pya nat.pya@gmail.com based partly on mgcv
by Simon N Wood
Wood S.N. (2006) Generalized Additive Models: An Introduction with R. Chapman and Hall/CRC Press.
scam
## Not run:
library(scam)
set.seed(2)
n <- 200
x1 <- runif(n)*4-1;
f1 <- exp(4*x1)/(1+exp(4*x1)) # monotone increasing smooth
x2 <- runif(n)*3-1;
f2 <- exp(-3*x2)/15 # monotone decreasing and convex smooth
f <- f1+f2
y <- f+ rnorm(n)*0.2
dat <- data.frame(x1=x1,x2=x2,y=y)
b <- scam(y~ s(x1,k=25,bs="mpi",m=2)+s(x2,k=25,bs="mdcx",m=2),
family=gaussian(link="identity"),data=dat)
plot(b,pages=1)
scam.check(b)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.