InterviewSolution
Saved Bookmarks
| 1. |
The _________ function can be used to select columns of a data frame that you want to focus on.(a) select(b) rename(c) get(d) setI had been asked this question in an interview.My question is taken from dplyr in portion R – Data Storage, Formats, Objects and Operations of R Programming |
|
Answer» RIGHT option is (a) select To elaborate: The select() FUNCTION allows you to get the few columns you MIGHT need. |
|