Concept Flow - readRDS and saveRDS
Create or have an R object
Use saveRDS(object, file)
Object saved as .rds file
Use readRDS(file)
Object loaded back into R
Use or inspect the loaded object
You save an R object to a file with saveRDS, then later read it back with readRDS to restore the object.