Selecting Columns using select()
Select Function
The select() function allows you to choose specific columns from a dataset.
r
data <- mtcars
select(data, mpg, cyl)
Next Tutorial: filter() Function

