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.