1. 学习
  2. /
  3. 课程
  4. /
  5. Modeling with tidymodels in R

Connected

练习

Creating workflows

workflow objects simplify the modeling process in tidymodels. With workflows, it's possible to train a parsnip model and recipe object at the same time.

In this exercise, you will combine your decision tree model and feature engineering recipe into a single workflow object and perform model fitting and evaluation.

Your model object, dt_model, recipe object, loans_recipe, and data split, loans_split have been loaded into this session.

说明 1 / 共 3 个

undefined XP
    1
    2
    3
  • Create a workflow object, loans_dt_wkfl, that combines your decision tree model and feature engineering recipe.