Q. How do you select columns from a dplyr data frame where the column names start with the letter 'a'?
β
Correct Answer: (C)
select(starts_with("a"))
You must be Logged in to update hint/solution