Removing data from Workspace in RStudio (in MAC)

R
Software
Author

Andrés Gutiérrez

Published

September 12, 2014

In order to remove the data saved (maybe by mistake) in your workspace from RStudio, you gotta find the route in the first message that you can see when opening Rstuido. For example, in my case I can read the following sentence when opening the program: Workspace loaded from ~/. RData.

Then, open the terminal and write the following code:

rm ~/. RData

That’s it.