etlplus.file.rds

etlplus.file.rds module.

Helpers for reading/writing R (RDS) data files.

Notes

  • An RDS file is a binary file format used by R to store a single R object,

    such as a data frame, list, or vector.

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

    • Sharing R data between users.

    • Loading R data into Python for analysis.

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

      and writing.

Classes

RdsFile()

Handler implementation for RDS files.