You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning message:
In anova.merMod(new("lmerModLmerTest", vcov_varpar = c(0.0686147429065321, :
failed to find model names, assigning generic names
Solution
Hiding warnings when the anova are computed.
# No warnings for this part
options(warn=-1)
# Model comparisoncomparison<- as.data.frame(do.call("anova", models))
comparison$formula<-combinations# Re-displaying warning messages
options(warn=0)
The text was updated successfully, but these errors were encountered:
1
When NA values are in a dataset, using the find_best_model function returns the following error:
Solution
Removing NA values only for the variables used in the formula
2
Using the same function, warning messages are always displayed:
Solution
Hiding warnings when the anova are computed.
The text was updated successfully, but these errors were encountered: