Press "Enter" to skip to content

dplyr Basics

Gerald Belton shows off the main functions and operators in dplyr:

The pipe operator

The pipe operator is one of the great features of the tidyverse. In base R, you often find yourself calling functions nested within functions nested within… you get the idea. The pipe operator %>% takes the object on the left-hand side, and “pipes” it into the function on the right hand side.

Click through for the rest of the story.