This document provides an overview of the dplyr package in R. It describes several key functions in dplyr for manipulating data frames, including verbs like filter(), select(), arrange(), mutate(), and summarise(). It also covers grouping data with group_by() and joining data with joins like inner_join(). Pipelines of dplyr operations can be chained together using the %>% operator from the magrittr package. The document concludes that dplyr provides simple yet powerful verbs for transforming data frames in a convenient way.