View source: R/misc_functions.R
rank_influence | R Documentation |
rank_influence
calculates influence measures of each data observation on models and then ranks them.
rank_influence(model)
model |
A generalised linear model object. |
rank_influence
is a wrap function that calls influence.measures
, ranks observations on
their significance influence on the model and displays the 10 most influential observations
(if they are significant).
influence.measures
.
data(diet, package = "Epi")
model <- glm(chd ~ fibre, data = diet, family = binomial)
rank_influence(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.