autogam generic methods {autogam} | R Documentation |
Generic autogam methods passed on to mgcv::gam methods
Description
An autogam
object contains a gam
element that is simply an mgcv::gam
object. So, it supports all mgcv::gam
methods by, in most cases, simply passing the gam
element on to their corresponding mgcv::gam
methods. Only the following methods have special specifications for autogam (see their dedicated documentation files for details): print.autogam()
.
Usage
## S3 method for class 'autogam'
anova(object, ...)
## S3 method for class 'autogam'
coef(object, ...)
## S3 method for class 'autogam'
cooks.distance(model, ...)
## S3 method for class 'autogam'
formula(x, ...)
## S3 method for class 'autogam'
influence(model, ...)
## S3 method for class 'autogam'
logLik(object, ...)
## S3 method for class 'autogam'
model.matrix(object, ...)
## S3 method for class 'autogam'
predict(object, ...)
## S3 method for class 'autogam'
residuals(object, ...)
## S3 method for class 'autogam'
vcov(object, ...)
Arguments
object , model |
An object of class |
... |
other arguments |
x |
formula |
Value
Returns the return object of the corresponding mgcv::gam
method.
[Package autogam version 0.1.0 Index]