[R] How to show all the functions and classes that are defined in a library?

2009-11-13 Thread Peng Yu
library(some_library_name) Suppose I load a library. I'm wondering what command I should use to list all the functions, classes and variables defined in the library. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help

Re: [R] How to show all the functions and classes that are defined in a library?

2009-11-13 Thread Romain Francois
On 11/13/2009 04:53 PM, Peng Yu wrote: library(some_library_name) Suppose I load a library. You mean package right ? A library is a set of packages I'm wondering what command I should use to list all the functions, classes and variables defined in the library. Check ?ls : ls(

Re: [R] How to show all the functions and classes that are defined in a library?

2009-11-13 Thread hadley wickham
On Fri, Nov 13, 2009 at 9:53 AM, Peng Yu pengyu...@gmail.com wrote: library(some_library_name) Try help(package = some_library_name) Hadley -- http://had.co.nz/ __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help