This is a generics::tidy()
method for a workflow that calls tidy()
on
either the underlying parsnip model, recipe, or tailor, depending on the value
of what
.
x
must be a fitted workflow, resulting in fitted parsnip model, prepped
recipe or fitted tailor that you want to tidy.
# S3 method for workflow
tidy(x, what = "model", ...)
A workflow
A single string. Either "model"
, "recipe"
or "tailor"
to
select which part of the workflow to tidy. Defaults to tidying the model.
Arguments passed on to methods
To tidy the unprepped recipe, use extract_preprocessor()
and tidy()
that directly. To tidy the untrained tailor, use extract_postprocessor()
and tidy()
that directly.