Check model quality of binomial logistic regression models.
binned_residuals(
model,
term = NULL,
n_bins = NULL,
show_dots = NULL,
ci = 0.95,
ci_type = c("exact", "gaussian", "boot"),
residuals = c("deviance", "pearson", "response"),
iterations = 1000,
verbose = TRUE,
...
)
A data frame representing the data that is mapped in the accompanying plot. In case all residuals are inside the error bounds, points are black. If some of the residuals are outside the error bounds (indicated by the grey-shaded area), blue points indicate residuals that are OK, while red points indicate model under- or over-fitting for the relevant range of estimated probabilities.
A glm
-object with binomial-family.
Name of independent variable from x
. If not NULL
,
average residuals for the categories of term
are plotted; else,
average residuals for the estimated probabilities of the response are
plotted.
Numeric, the number of bins to divide the data. If
n_bins = NULL
, the square root of the number of observations is
taken.
Logical, if TRUE
, will show data points in the plot. Set
to FALSE
for models with many observations, if generating the plot is too
time-consuming. By default, show_dots = NULL
. In this case binned_residuals()
tries to guess whether performance will be poor due to a very large model
and thus automatically shows or hides dots.
Numeric, the confidence level for the error bounds.
Character, the type of error bounds to calculate. Can be
"exact"
(default), "gaussian"
or "boot"
. "exact"
calculates the
error bounds based on the exact binomial distribution, using binom.test()
.
"gaussian"
uses the Gaussian approximation, while "boot"
uses a simple
bootstrap method, where confidence intervals are calculated based on the
quantiles of the bootstrap distribution.
Character, the type of residuals to calculate. Can be
"deviance"
(default), "pearson"
or "response"
. It is recommended to
use "response"
only for those models where other residuals are not
available.
Integer, the number of iterations to use for the
bootstrap method. Only used if ci_type = "boot"
.
Toggle warnings and messages.
Currently not used.
Binned residual plots are achieved by "dividing the data into categories (bins) based on their fitted values, and then plotting the average residual versus the average fitted value for each bin." (Gelman, Hill 2007: 97). If the model were true, one would expect about 95% of the residuals to fall inside the error bounds.
If term
is not NULL
, one can compare the residuals in
relation to a specific model predictor. This may be helpful to check if a
term would fit better when transformed, e.g. a rising and falling pattern
of residuals along the x-axis is a signal to consider taking the logarithm
of the predictor (cf. Gelman and Hill 2007, pp. 97-98).
Gelman, A., and Hill, J. (2007). Data analysis using regression and multilevel/hierarchical models. Cambridge; New York: Cambridge University Press.
model <- glm(vs ~ wt + mpg, data = mtcars, family = "binomial")
result <- binned_residuals(model)
result
# look at the data frame
as.data.frame(result)
# \donttest{
# plot
if (require("see")) {
plot(result, show_dots = TRUE)
}
# }
Run the code above in your browser using DataLab