rdata
RData is a binary file format used by the R programming language to store one or more R objects in a compact, serialized form. Files with extensions such as .RData, .rda, or sometimes .rdata can contain multiple objects saved from an R session and are designed to preserve the objects’ structure, attributes, and classes.
The primary tools for creating and using RData files are save() and load(). save(object1, object2, file =
RData differs from readRDS/readRDS in that an RData file can store multiple objects and load them into
Because RData is a binary format, it is not intended for human readability or easy interoperability with
Compatibility and security notes: RData files are generally stable across minor R version updates, but compatibility