The line of code below from the dplyr
package is super simple. And yet, its giving me an error. I'm just trying to practice using the package and want to select a single column, cyl
, from the data frame mtcars
. What's going on here? Any ideas?
> select(mtcars, cyl)
Error in select(mtcars, cyl) : unused argument (cyl)