From 14c267391cd35471233356d16148a7cf4b96efb8 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Wed, 27 Apr 2022 09:07:32 -0500 Subject: [PATCH] Grammar --- workflow-pipes.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-pipes.Rmd b/workflow-pipes.Rmd index d65a81f..84fb73e 100644 --- a/workflow-pipes.Rmd +++ b/workflow-pipes.Rmd @@ -5,7 +5,7 @@ status("complete") ``` The pipe, `|>`, is a powerful tool for clearly expressing a sequence of operations that transform an object. -We briefly introduced pipes in the previous chapter but before going too much farther I wanted to give a few more details and discuss, `%>%`, an predecessor to `|>`. +We briefly introduced pipes in the previous chapter but before going too much farther I wanted to give a few more details and discuss `%>%`, a predecessor to `|>`. To add the pipe to your code, we recommend using the build-in keyboard shortcut Ctrl/Cmd + Shift + M. You'll need to make one change to your RStudio options to use `|>` instead of `%>%` as shown in Figure \@ref(fig:pipe-options); more on `%>%` shortly.