Created
June 4, 2018 15:45
-
-
Save dgrtwo/fbe4d9ba2c701712cd14a3938f22caa8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(modelr) | |
library(tidyverse) | |
library(broom) | |
mtcars %>% | |
crossv_kfold(k = 10) %>% | |
mutate(model = map(train, ~ lm(mpg ~ wt, .)), | |
result = map2(model, test, ~ augment(.x, newdata = .y))) %>% | |
unnest(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment