Saved Bookmarks
| 1. |
Lists can be coerced with which function?(a) As.lists(b) Has.lists(c) In.lists(d) Co.lists |
|
Answer» The correct answer is (a) As.lists To explain: Lists are sometimes called generic vectors because the elements of a list can be of any type of R object, even lists containing further lists. This property makes them fundamentally different from other atomic vectors. Create lists using list() and coerce other objects using as.list(). |
|