lifecycle::badge("maturing")
In the (cross-)validation results from functions like
cross_validate()
,
the model formulas have been split into the columns
Dependent
, Fixed
and Random
.
Quickly reconstruct the model formulas from these columns.
reconstruct_formulas(results, topn = NULL)
list
of model formulas.
data.frame
with results from
cross_validate()
or validate()
. (tbl)
Must contain at least the columns "Dependent"
and "Fixed"
. For random effects,
the "Random"
column should be included.
Number of top rows to return. Simply applies head()
to the results tibble
.
Ludvig Renbo Olsen, r-pkgs@ludvigolsen.dk