earth (version 5.1.1)

residuals.earth: Residuals for an earth model

Description

Residuals of an earth model.

Usage

# S3 method for earth
residuals(object = stop("no 'object' argument"),
          type = NULL, warn = TRUE, …)

Arguments

object

An earth object. This is the only required argument.

type

One of:

"earth" (default) Residuals from the lm fit on bx. "response" Residuals as above, but for earth-glm models return the glm response residuals. "standardize" Residuals divided by se * sqrt(1 - h_ii). See the standardize argument of plot.earth. "delever" Residuals divided by sqrt(1 - h_ii). See the delever argument of plot.earth.

The following options are for earth-glm models. They return the GLM residuals (from the glm fit on bx). See residuals.glm for details:

"deviance" "pearson" "working" "partial"

The following options for earth-glm models are redundant. They are provided for compatibility with older versions of earth or other functions:

"glm.response" same as "response" "glm.deviance" same as "deviance" "glm.pearson" same as "pearson" "glm.working" same as "working" "glm.partial" same as "partial"

warn

This function gives warnings when the results are not what you may expect. Use warn=FALSE to turn of just these warnings.

Unused, but provided for generic/method consistency.

Value

The residual values (will be a matrix for multiple response models).

See Also

earth residuals resid identical to residuals

Examples

Run this code
# NOT RUN {
data(etitanic)
earth.mod <- earth(pclass ~ ., data=etitanic, glm=list(family=binomial))
head(resid(earth.mod, warn=FALSE))      # earth residuals, a column for each response
head(resid(earth.mod, type="response")) # GLM response resids, a column for each response
# }

Run the code above in your browser using DataCamp Workspace