Learn R Programming

dgmb (version 1.2)

ViewHelp: Viewing help files in pdf format

Description

A function to view the help files.

Usage

ViewHelp()

Arguments

Value

pdf file
A help file including the description of the main functions of the dgmb-package.

References

Dalgaard's Peter (2002) Rnews: The Newsletter of the R Project, Vol. 3.

See Also

package

Examples

Run this code

ViewHelp <- function()
{
helpfile<-paste(find.package("dgmb",verbose = verbose))
helpfile<-substring(helpfile,1,nchar(helpfile))
helpfile<-paste(helpfile,"/docs/dgmb-manual.pdf")
helpfile<-sub("dgmb ","dgmb", helpfile)
cat ("Viewing dgmb help...otherwise, you should write help(dgmb) 
	  in R console\n")
browseURL(helpfile)
}

Run the code above in your browser using DataLab