etlplus.file.rda

etlplus.file.rda module.

Helpers for reading/writing RData workspace/object bundle (RDA) files.

Notes

  • A RDA file is a binary file format used by R to store workspace objects,

    including data frames, lists, and other R objects.

  • Common cases:
    • Storing R data objects for later use.

    • Sharing R datasets between users.

    • Loading R data into Python for analysis.

  • Rule of thumb:
    • If the file follows the RDA specification, use this module for reading

      and writing.

Classes

RdaFile()

Handler implementation for RDA files.