Re: [R] Listing of available functions

2011-01-04 Thread Sébastien Bihorel
Thank you David, Duncan, and Henrique. This is going to be useful. Sebastien On Tue, Jan 4, 2011 at 8:38 AM, David Winsemius wrote: > You can also search for a "cheatsheet". There are several out there > searching on "cheatsheet r" > > This one at Oregon State is presented as a web page" > > ht

Re: [R] Listing of available functions

2011-01-04 Thread David Winsemius
You can also search for a "cheatsheet". There are several out there searching on "cheatsheet r" This one at Oregon State is presented as a web page" http://www.science.oregonstate.edu/~shenr/Rhelp/00cheat.htm Others are available as pdf's. On Jan 4, 2011, at 7:13 AM, Sébastien Bihorel wrote

Re: [R] Listing of available functions

2011-01-04 Thread Duncan Murdoch
On 04/01/2011 7:13 AM, Sébastien Bihorel wrote: Dear R-users, Is there a easy way to access to a complete listing of available functions from a R session? The help.start() and ? functions are great, but I feel like they require the user to know the answer in advance (especially with respect to f

Re: [R] Listing of available functions

2011-01-04 Thread Henrique Dallazuanna
Try this: sapply(search(), ls, all.names = TRUE) This show all the functions in the search() path On Tue, Jan 4, 2011 at 10:13 AM, Sébastien Bihorel wrote: > Dear R-users, > > Is there a easy way to access to a complete listing of available functions > from a R session? The help.start() and ?

Re: [R] Listing of available functions

2011-01-04 Thread Matthew Dowle
Try : objects("package:base") Also, as it happens, a new package called unknownR is in development on R-Forge. It's description says : Do you know how many functions there are in base R? How many of them do you know you don't know? Run unk() to discover your unknown unknowns. It's fast an

[R] Listing of available functions

2011-01-04 Thread Sébastien Bihorel
Dear R-users, Is there a easy way to access to a complete listing of available functions from a R session? The help.start() and ? functions are great, but I feel like they require the user to know the answer in advance (especially with respect to function names)... I could not find a easy way to s