From 44f3e50fdf4f4fc867d32aeec1bf57dca5d10c63 Mon Sep 17 00:00:00 2001 From: "Yiming (Paul) Li" Date: Wed, 20 Jun 2018 04:07:17 -0500 Subject: [PATCH] Correct a typo in model-many.Rmd (#647) --- model-many.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model-many.Rmd b/model-many.Rmd index 555e547..741757c 100644 --- a/model-many.Rmd +++ b/model-many.Rmd @@ -377,7 +377,7 @@ df %>% unnest() ``` -(If you find yourself using this pattern a lot, make sure to check out `tidyr:separate_rows()` which is a wrapper around this common pattern). +(If you find yourself using this pattern a lot, make sure to check out `tidyr::separate_rows()` which is a wrapper around this common pattern). Another example of this pattern is using the `map()`, `map2()`, `pmap()` from purrr. For example, we could take the final example from [Invoking different functions] and rewrite it to use `mutate()`: