Skip to content

Commit

Permalink
remove extra 0 compared to the declared instruction on line 42 of gen…
Browse files Browse the repository at this point in the history
…erating 20 random test-training splits
  • Loading branch information
dpastoor committed May 28, 2016
1 parent d101d7e commit c12a384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model-assess.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ partition(mtcars, 0.1)
We'll generate 20 random test-training splits, and then create lists of test-training datasets:

```{r}
partitions <- rerun(200, partition(mtcars, 0.25))
partitions <- rerun(20, partition(mtcars, 0.25))
tst <- partitions %>% map(~mtcars[.x, , drop = FALSE])
trn <- partitions %>% map(~mtcars[!.x, , drop = FALSE])
Expand Down

0 comments on commit c12a384

Please sign in to comment.