From 9fdb50ee10afbb4786866a0c29c77e2874ea35cf Mon Sep 17 00:00:00 2001 From: Mitsuo Shiota <48662507+mitsuoxv@users.noreply.github.com> Date: Mon, 22 May 2023 21:48:54 +0900 Subject: [PATCH] Next chapter is Iteration, not Vectors (#1490) --- functions.qmd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/functions.qmd b/functions.qmd index 0418432..1dfc9cd 100644 --- a/functions.qmd +++ b/functions.qmd @@ -871,5 +871,4 @@ A few places to learn more are: - To learn more about reducing duplication in your ggplot2 code, read the [Programming with ggplot2](https://ggplot2-book.org/programming.html){.uri} chapter of the ggplot2 book. - For more advice on function style, see the [tidyverse style guide](https://style.tidyverse.org/functions.html){.uri}. -In the next chapter, we'll dive into some of the details of R's vector data structures that we've omitted so far. -These are not immediately useful by themselves, but are a necessary foundation for the following chapter on iteration which gives you further tools for reducing code duplication. +In the next chapter, we'll dive into iteration which gives you further tools for reducing code duplication.