11.4 RStudio Workspace
In the tab ‘Session’, you find options to Save and Load Workspace. These options allow you to save all variables (and their content) that you have created during your session.
11.4.1 Exercises: RStudio Workspace
See Section 18.0.29 for solutions.
Assign the values 1,2,3 to variables
a
,b
andc
, respectively. Quit RStudio and save the work space.Start RStudio again and check that all variables you created are still there.
Use R to calculate
log(a)
and assign the result to variabley
. Quit RStudio without saving the work space. Restart RStudio and check that the variablesa
,b
andc
exist, but noty
.