Site hosted by Angelfire.com: Build your free website today!

Removing an object / variable :

> objects()
[1] ".Last.value"  "last.dump"    "last.warning" "p"            "x"            "y"
> rm(y)                         # [ removes “y” from objects]
> objects()
[1] ".Last.value"  "last.dump"    "last.warning" "p"            "x"

Back to Index page