How do I get coefficients from a fit_resamples object?

How does fit_resamples() fit/predict?
When looking at the object that fit_resamples() spits out, it results into this:

But I would like something like this:

There is one mention of 'coefficients' in the docs though it's an explanation for something else, nothing about 'weights' or 'beta' etc. I got lost in the docs trying to find them.

See the extract option. That will return a workflow for each resample and the coefficients can be extracted from those.

There is an example here.

1 Like

Thanks Max

In the example link you provided, it seems to be same as the first picture I posted, and I can't seem to find anything about coefficients. Is there a way to derive coefficients from these objects?