Saved Bookmarks
| 1. |
When you call serialize() on an R object, the output will be ____ coded in hexadecimal format.(a) raw vector(b) character vector(c) integer vector(d) binary vector |
|
Answer» Right answer is (a) raw vector Easy explanation: When you call serialize() on an R object, the output will be raw vector coded in hexadecimal format. Serialize is used for converting an R object into a binary format for outputting to a connection. |
|