LibraryCarpentry / lc-r

Introduction to R
http://librarycarpentry.org/lc-r/
Other
14 stars 28 forks source link

Data Cleaning and Transformation: Selecting variables dplyr package info #40

Closed arieldeardorff closed 3 years ago

arieldeardorff commented 3 years ago

In the selecting variables section the first line of code is written:

booksTitleCheckouts <- dplyr::select(books, title, tot_chkout)

do we need that dplyr:: part? If so we should explain what is happening here.