Q26
In dplyr, how do you select columns that match a specific pattern using the select() function?
A.
select(pattern = "specific_pattern")
B.
choose_cols(matches("specific_pattern"))
AnswerC.
select(columns = matches("specific_pattern"))
D.
pick_cols(pattern = "specific_pattern")
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board