Read/write RDS files.
read_rds(file) write_rds( x, file, compress = c("none", "gz", "bz2", "xz"), version = 2, path = deprecated(), ... )
file |
The file path to read from/write to. |
x |
R object to write to serialise. |
compress |
Compression method to use: "none", "gz" ,"bz", or "xz". |
version |
Serialization format version to be used. The default value is 2
as it's compatible for R versions prior to 3.5.0. See |
path |
|
... |
Additional arguments to connection function. For example, control
the space-time trade-off of different compression methods with
|
write_rds()
returns x
, invisibly.
temp <- tempfile() write_rds(mtcars, temp) read_rds(temp) ## Not run: write_rds(mtcars, "compressed_mtc.rds", "xz", compression = 9L) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.