Hi, On Wednesday 04 August 2010, Stefan Rödiger wrote: > how do I escape local (from a plugin) in order to remove objects from > .GlobalEnv?
simply by using .GlobalEnv ;-). To remove a member of a list / data.frame in
.GlobalEnv:
.GlobalEnv$my.list[["object"]] <- NULL
To remove a toplevel object in .GlobalEnv:
rm ("object", envir=.GlobalEnv)
Regards
Thomas
signature.asc
Description: This is a digitally signed message part.
------------------------------------------------------------------------------ The Palm PDK Hot Apps Program offers developers who use the Plug-In Development Kit to bring their C/C++ apps to Palm for a share of $1 Million in cash or HP Products. Visit us here for more details: http://p.sf.net/sfu/dev2dev-palm
_______________________________________________ RKWard-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rkward-devel
