Saved Bookmarks
| 1. |
Multiple objects can be de parsed at once using the ______ function.(a) dput()(b) write()(c) dump()(d) dget() |
|
Answer» The correct option is (a) dput() To elaborate: dput is used for outputting a textual representation of an R object. The dump() and dput() functions are useful because the resulting textual format is editable, and in the case of corruption, potentially recoverable. |
|