From 6351bf51de44ef402dacc5efd159c3036a57e2e1 Mon Sep 17 00:00:00 2001 From: batpigandme Date: Fri, 29 Jul 2016 14:07:49 -0400 Subject: [PATCH] Fixed spelling of purrr on line 121 (#208) --- model-basics.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model-basics.Rmd b/model-basics.Rmd index 957f4a8..c0be4c6 100644 --- a/model-basics.Rmd +++ b/model-basics.Rmd @@ -118,7 +118,7 @@ measure_distance <- function(mod, data) { measure_distance(c(7, 1.5), sim1) ``` -Now we can use purrrr to compute the distance for all the models defined above. We need a helper function because our distance function expects the model as a numeric vector of length 2. +Now we can use purrr to compute the distance for all the models defined above. We need a helper function because our distance function expects the model as a numeric vector of length 2. ```{r} sim1_dist <- function(a1, a2) {