What is an rda file
- how to load rda file in r
- how to open rda file in r
- how to open rda file
- rda load
Rda file to csv
Rda file to csv online!
Save and Load RData Workspace Files in R
In this article, we will discuss how to save and load R data workspace files in R programming language.
Method 1: Using save.image and load method
The save.image method in R is used to save the current workspace files.
It is an extended version of the save method in R which is used to create a list of all the declared data objects and save them into the workspace. These files can then later be read into the corresponding saved data objects using the load() method.
Syntax:
save.image(file = “.RData”)
Arguments :
file – name of the file where the R object is saved to or read from.
Example: Saving R data workspace files
R
|
These files can be loaded into the workspace using load() function.
Syntax:
Load(path)Example: Loading R data workspace files
R
Output: