Clear function (Matlab style)
List or remove items from workspace, or display system information.
clear(lst) ver() who() whos()
lst |
Character vector of names of variables in the global environment. |
Remove these or all items from the workspace, i.e. the global environment, and freeing up system memory.
who()
lists all items on the workspace.whos()
lists all items and their class and size.
ver()
displays version and license information for R and all the
loaded packages.
Invisibly NULL.
ls
, rm
, sessionInfo
# clear() # DON'T # who() # whos() # ver()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.