workflows 1.1.0
-
Simon Couch is now the maintainer (#170).
-
add_model()now errors if you try to add a model specification
that contains an unknown mode. This is a breaking change, as previously in
some cases it would successfully "guess" the mode. This change brings
workflows more in line withparsnip::fit()andparsnip::fit_xy()
(#160, tidymodels/parsnip#801). -
broom::augment()now works correctly in the edge case where you had supplied
a hardhat blueprint withcompositionset to either"matrix"or
"dgCMatrix"(#148). -
butcher::axe_fitted()now axes the recipe preprocessor that is stored inside
a workflow, which will reduce the size of thetemplatedata frame that is
stored in the recipe (#147). -
add_formula()no longer silently ignores offsets supplied withoffset().
Instead, it now errors atfit()time with a message that encourages you to
use a model formula throughadd_model(formula = )instead (#162).