Is there a function or command in R
which could clear all the global environment
, just like clear
in Matlab
.
I only know the function rm
that needs me to put every variable name in it if I want to remove it. That's really not convenient.
Thanks