How to Save and Load RDA Files in R
- R-PROGRAMMING
To save and load RDA files in R, yo can use save() and load() functions respectively.
The following methods show how you can do it with syntax.
Method 1: Use save() Function
save(object,"file.Rda") Method 2: Use load() Function
load(file.Rda) # Create object print(object) The following examples show how to save and load rda files in R.
Using save() Function Let’s see how we can use save() function in R:
# Create data frame df <- data.