Learn R Programming

dgmb (version 1.0)

ViewHelp: Viewing help files in pdf format

Description

A function to view the help files.

Usage

ViewHelp()

Arguments

Value

  • A file:
  • pdf fileA 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...if nothing happens, you should write help(dgmb) in R console
")
browseURL(helpfile)
}

Run the code above in your browser using DataLab