plot_kfold_cv {sjPlot} | R Documentation |
Plot model fit from k-fold cross-validation
Description
This function plots the aggregated residuals of k-fold cross-validated models against the outcome. This allows to evaluate how the model performs according over- or underestimation of the outcome.
Usage
plot_kfold_cv(data, formula, k = 5, fit)
Arguments
data |
A data frame, used to split the data into |
formula |
A model formula, used to fit linear models ( |
k |
Number of folds. |
fit |
Model object, which will be used to compute cross validation. If
|
Details
This function, first, generates k
cross-validated test-training
pairs and
fits the same model, specified in the formula
- or fit
-
argument, over all training data sets.
Then, the test data is used to predict the outcome from all
models that have been fit on the training data, and the residuals
from all test data is plotted against the observed values (outcome)
from the test data (note: for poisson or negative binomial models, the
deviance residuals are calculated). This plot can be used to validate the model
and see, whether it over- (residuals > 0) or underestimates
(residuals < 0) the model's outcome.
Note
Currently, only linear, poisson and negative binomial regression models are supported.
Examples
data(efc)
plot_kfold_cv(efc, neg_c_7 ~ e42dep + c172code + c12hour)
plot_kfold_cv(mtcars, mpg ~.)
# for poisson models. need to fit a model and use 'fit'-argument
fit <- glm(tot_sc_e ~ neg_c_7 + c172code, data = efc, family = poisson)
plot_kfold_cv(efc, fit = fit)
# and for negative binomial models
fit <- MASS::glm.nb(tot_sc_e ~ neg_c_7 + c172code, data = efc)
plot_kfold_cv(efc, fit = fit)