Skip to content

help(PackageName)

3 messages · Peter Dalgaard, Martin Schlather, Brian Ripley

#
Martin Schlather <Martin.Schlather@uni-bayreuth.de> writes:
help(nlme) would be ambiguous then. 

help(package=nlme) already works, same as library(help=nlme). 

I suppose we could make it a convention to have each package contain
an Overview entry so that help(Overview, package=nlme) would do what
you want (or even help(Overview, nlme) if we switch the arguments
around), but someone would have to write those pages....
#
Dear R Core Team,

I'm wondering whether it is useful that every package should allow 
for help(PackageName), giving some general information about the 
package (more/nicer than library(help=PackageName)). This man page 
may include some mathematical or statistical background, or contain 
a guideline for the package.

Cheers,
Martin
#
On 12 Jun 2001, Peter Dalgaard BSA wrote:

            
Meanwhile (and with a new help system planned, I mean until that is
onstream), you will find discussion of this topic in the R-devel archives,
and should note that several packages already use INDEX for this purpose.
Try

library(help=boot)

for one.