Explorează cele mai bune și mai slabe modele ale tale
Hai să explorezi cele mai bune și mai slabe patru modele ale tale, comparând liniile ajustate cu valorile reale.
Acest exercițiu face parte din cursul
Machine Learning în Tidyverse
Exercițiu interactiv practic
Încearcă acest exercițiu completând acest cod de exemplu.
# Compare the predicted values with the actual values of life expectancy for the top 4 best fitting models
best_augmented %>%
ggplot(aes(x = year)) +
geom_point(aes(y = ___)) +
geom_line(aes(y = ___), color = "red") +
facet_wrap(~country, scales = "free_y")