What is a RDS file?
A .RDS file is a serialized data object created by the R programming language. It stores a single data structure, such as a dataframe, matrix, or list. This preserves the exact state and structure of the data. Unlike .RDATA files that save entire workspaces with multiple objects, .RDS files save only one specific object.
Alternative formats
Because file extensions are sometimes shared between different programs, a .RDS file might also be a Ray Dream Studio Scene File. This is an older 3D graphics format originally created by DAZ Productions. If you are unsure what kind of file you have, viewer.online/rds analyzes .RDS files to identify their exact format and creator software, shows which programs can open the file, and usually previews it.
How to open RDS files
To open an R data .RDS file on your computer, you need an R software environment. You can use the popular RStudio application or the standard R command-line interface. Inside your R script, use the `readRDS()` function to load the file data into a variable. If you want to read the file in Python, you can use the pyreadr library.
Summary
Because most .RDS files use the known GZIP format to compress and serialize data, viewer.online/rds can safely open and display them online, eliminating compatibility problems.