НачатьНачать бесплатно

Augment the fitted values of each model

In this exercise you will prepare your four best and worst fitting models for further exploration by augmenting your model data with augment().

Это упражнение является частью курса

Machine Learning in the Tidyverse

Посмотреть курс

Инструкции к упражнению

  • Build the best_augmented data frame by building augmented data frames and simplifying them with unnest() using the best_fit data frame.
  • Build the worst_augmented data frame by building augmented data frames and simplifying them with unnest() using the worst_fit data frame.

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

best_augmented <- best_fit %>% 
  # Build the augmented data frame for each country model
  mutate(augmented = ___) %>% 
  # Expand the augmented data frames
  ___

worst_augmented <- worst_fit %>% 
  # Build the augmented data frame for each country model
  mutate(augmented = ___) %>% 
  # Expand the augmented data frames
  ___
Редактировать и запускать код