You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
start at \$`r format(round(pull(tidy(pull_workflow_fit(lm_fit)), estimate)[1]), big.mark=",", nsmall=0, scientific=FALSE)` for 0 square feet, and that
273
+
start at \$`r format(round(pull(tidy(extract_fit_parsnip(lm_fit)), estimate)[1]), big.mark=",", nsmall=0, scientific=FALSE)` for 0 square feet, and that
274
274
every extra square foot increases the cost of
275
-
the house by \$`r format(round(pull(tidy(pull_workflow_fit(lm_fit)), estimate)[2]), scientific=FALSE)`. Finally,
275
+
the house by \$`r format(round(pull(tidy(extract_fit_parsnip(lm_fit)), estimate)[2]), scientific=FALSE)`. Finally,
276
276
we predict on the test data set to assess how well our model does:
277
277
278
278
```{r 08-assessFinal}
@@ -314,12 +314,12 @@ lm_plot_final
314
314
315
315
We can extract the coefficients from our model by accessing the
316
316
fit object that is output by the `fit` \index{tidymodels!fit} function; we first have to extract
317
-
it from the workflow using the `pull_workflow_fit` function, and then apply
317
+
it from the workflow using the `extract_fit_parsnip` function, and then apply
318
318
the `tidy` function to convert the result into a data frame:
0 commit comments