เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

Fit and augment

Now is time to fit and augment our model. You are using all available variables and have some expectations on the results. Can this relatively larger model outperform simpler ones? Take a look at the lr_augment object to see how your model is performing.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Feature Engineering in R

ดูคอร์ส

คำแนะนำการฝึกหัด

  • Augment the fit object to assess the model.

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

lr_fit <- lr_workflow %>%
  fit(test)

# Augment the fit object to assess the model
lr_aug <- lr_fit %>%
  ___(test)

lr_aug %>% class_evaluate(truth = Attrition,
                          estimate = .pred_class,
                          .pred_No)
lr_aug
แก้ไขและรันโค้ด