[R] a very small query

2007-03-26 Thread gyadav
Hi All what is the command to give me the listing of the loaded packages. I mean which are active and not the listing of all the installed packages as given by library() thanks in advance -gaurav

Re: [R] a very small query

2007-03-26 Thread Prof Brian Ripley
On Mon, 26 Mar 2007, [EMAIL PROTECTED] wrote: what is the command to give me the listing of the loaded packages. ?search ?sessionInfo (sessionInfo massages the output of search() to show only packages). I mean which are active and not the listing of all the installed packages as given by

Re: [R] a very small query

2007-03-26 Thread Gabor Grothendieck
Try these: search() sessionInfo() loadedNamespaces() The first two show the attached packages (and some other info) and the last one shows the namespaces that are loaded. Note that detaching a package does not unload its namespace and unloading a namespace does not de-register its methods.