How to clean R’s Global Environment?

Asked

Viewed 854 times

1

What is the command to clear the Global Environment from R?

  • 1

    If I’m not mistaken, this is it: rm(list=ls())

  • That’s the one! Thank you.

  • I added as an answer, please accept by clicking on check

1 answer

1

With this command you clean the enviroment of the R:

rm(list=ls())

Browser other questions tagged

You are not signed in. Login or sign up in order to post.