From 3836b6b35235ee3b26b84b3fab36f4b8f202db89 Mon Sep 17 00:00:00 2001 From: hadley Date: Sun, 24 Jul 2016 15:21:32 -0500 Subject: [PATCH] Grrr, purrr aliasing strikes again --- iteration.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iteration.Rmd b/iteration.Rmd index 4ee0199..305e8b2 100644 --- a/iteration.Rmd +++ b/iteration.Rmd @@ -128,7 +128,7 @@ That's all there is to the for loop! Now is a good time to practice creating som 1. Eliminate the for loop in each of the following examples by taking advantage of a built-in function that works with vectors: - ```{r} + ```{r, eval = FALSE} out <- "" for (x in letters) { out <- stringr::str_c(out, x)