influence_plot: Leverage values vs. Studentized residuals

Description Usage Arguments Details Value Examples

View source: R/outlier.R

Description

Bubble-Plot of the Leverage values vs. Studentized residuals with the scale of the bubble by the cook's distance

Usage

1
influence_plot(influence_obs)

Arguments

influence_obs

a list with following values: leverage.value, cooks.distance, studentized.residuals

Details

Further information about Studentized residuals, Leverage values or cook's distances, can be found in the documentation influence_observation

Value

ggplot-object

Examples

1
2
3
4
5
6
7
8
## Not run: 
set.seed(167)
X <- data.frame(matrix(rnorm(1000), nrow = 100))
resid <- rnorm(100)
inf_obs <- olsdiagnosticR:::influence_observation(X = X, e = error)
olsdiagnosticR:::influence_plot(influence_obs = inf_obs)

## End(Not run)

Kale-S/isnormalr documentation built on Sept. 23, 2019, 5:48 a.m.