InterviewSolution
Saved Bookmarks
| 1. |
Point out the correct statement?(a) gather() makes “wide” data longer(b) Two functions are present for tidy data(c) separate() makes “wide” data longer(d) spread() function takes multiple columnsThis question was posed to me in homework.Enquiry is from Data Wrangling in section Profiling, Simulation and Data Analysis of R Programming |
|
Answer» RIGHT option is (C) separate() MAKES “wide” DATA longer The explanation is: Other names for gather include melt (RESHAPE2), pivot (spreadsheets) and fold (databases). |
|