cvms 0.3.0
-
cross_validate_fn()
is added. Cross-validate custom model functions. -
Breaking change: In
evaluate()
, whentype
ismultinomial
, the output is now a single tibble. TheClass Level Results
are included as a nested tibble. -
Breaking change: In
baseline()
,lmer
models are now fitted withREML = FALSE
by default. -
Adds
REML
argument tobaseline()
. -
Bug fix: the
control
argument incross_validate()
was not being used. Now it is. -
In
cross_validate()
, the model is no longer fitted twice when a warning is thrown during fitting. -
Adds
metrics
argument tocross_validate()
andvalidate()
. Allows enabling the regularAccuracy
metric
inbinomial
or to disable metrics (will currently still be computed but not included in the output). -
AICc
is now computed with theMuMIn
package instead of theAICcmodavg
package, which
is no longer a dependency. -
Adds
lifecycle
badges to the function documentation.