select_models: Select models based on AICc and VIF.
Description
This function selects models from a data frame based on the AICc and VIF values. Models with AICc greater than negative infinity and VIF less than or equal to 6 are considered. The difference in AICc values for each model is calculated with respect to the model with the minimum AICc. Models with a difference in AICc less than or equal to the specified delta_aicc value are selected.
Usage
select_models(df, delta_aicc = 2)
Value
a data frame containing the selected models and the AIC weights.
Arguments
df
a data frame containing the models to select from.
delta_aicc
a numeric value specifying the maximum difference in AICc values allowed.