InterviewSolution
Saved Bookmarks
| 1. |
________ add new variables/columns or transform existing variables.(a) mutate(b) add(c) apped(d) arrangeThis question was addressed to me in an online interview.The question is from Data Wrangling topic in chapter Profiling, Simulation and Data Analysis of R Programming |
|
Answer» CORRECT option is (a) mutate Explanation: ARRANGE is used to REORDER rows of a data FRAME. |
|