View source: R/ols-influence-measures.R
ols_leverage | R Documentation |
The leverage of an observation is based on how much the observation's value on the predictor variable differs from the mean of the predictor variable. The greater an observation's leverage, the more potential it has to be an influential observation.
ols_leverage(model)
model |
An object of class |
Leverage of the model.
Kutner, MH, Nachtscheim CJ, Neter J and Li W., 2004, Applied Linear Statistical Models (5th edition). Chicago, IL., McGraw Hill/Irwin.
Other influence measures:
ols_hadi()
,
ols_pred_rsq()
,
ols_press()
model <- lm(mpg ~ disp + hp + wt + qsec, data = mtcars)
ols_leverage(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.