Which packages are used to store and restore R objects to and from a file in R language?
Answer Posted / Rajveer Singh
In R, the 'save' and 'load' functions are commonly used for storing and restoring R objects. To save an object, you can use:n```Rnsave(file = "my_object.rda", object = my_object)n``nTo load an object, you can use:n```Rnload("my_object.rda")n``
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers