library(dplyr)
library(nycflights13)
There are several verbs most commonly used in dplyr to modify datasets.
select
Select tailnum, type, model variables from the dataframe planes:
select(planes, tailnum, type, model)
## # A tibble: 3,322 × 3
## tailnum type mode...