Saved Bookmarks
| 1. |
The benefit of the _____ function is that it is the only way to perfectly repressed an R object in an exportable format, without losing precision or any metadata.(a) save()(b) save.image()(c) unserialize()(d) serialize() |
|
Answer» Right answer is (d) serialize() Explanation: Unserialize is used for reading single R objects in the binary form. Serialize is used for converting an R object into a binary format for outputting to a connection (or file). |
|