This function performs assumption checks for logistic regression models, including binary, multinomial, and ordered models. It conducts various tests to assess the validity of the model assumptions.
check_logit(
logit_model,
data,
tipo_modelo,
vars_numericas = NULL,
y = NULL,
auc = NULL,
ci = NULL,
ret = NULL
)A list containing the results of assumption checks.
Fitted logistic regression model.
dataframe containing predictor variables.
Type of logistic regression model: ("binario", "multinomial", "ordenado", "binary", "multinomial", "ordered", "ordinal")
Numeric variables to be used in Box-Tidwell test. Default is NULL.
Response variable for ROC test. Default is NULL.
roc function argument.
roc function argument.
roc function argument.