Learn R Programming

fdm2id (version 0.9.5)

resplot: Plot the studentized residuals of a linear regression model

Description

Plot the studentized residuals of a linear regression model.

Usage

resplot(model, index = NULL)

Arguments

model

The model to be plotted.

index

The index of the variable used for for the x-axis.

Examples

Run this code
# NOT RUN {
require (datasets)
data (trees)
model = LINREG (trees [, -3], trees [, 3])
resplot (model) # Ordered by index
resplot (model, index = 0) # Ordered by variable "Volume" (dependant variable)
resplot (model, index = 1) # Ordered by variable "Girth" (independant variable)
resplot (model, index = 2) # Ordered by variable "Height" (independant variable)
# }

Run the code above in your browser using DataLab