Obtains predictions from a robustly fitted generalized additive model object
# S3 method for rgam
predict(object, type = c("link", "response", "terms"), ...)
a fitted rgam
object
a character string specifying the type of predictions. Can be one of ‘link’ (the default), ‘response’, or ‘terms’.
additional arguments passed from other methods
the component of the ‘object’ based on the value
of type
: if the ‘code’ is ‘response’, returns the
$fitted.values
; if the type is ‘link’, returns the
$additive.predictors
; and if the type is ‘terms’,
returns the $smooth
component.
Serves as the extractor function on objects of class
rgam
.