R/intro.R

Defines functions lfstat_intro

Documented in lfstat_intro

lfstat_intro <- function(){
    pdfviewer <- getOption("pdfviewer")
    introfile <- system.file("doc","intro_lfstat.pdf",package = "RcmdrPlugin.lfstat")
    if (identical(pdfviewer, "false")) {
        }
    else if (.Platform$OS.type == "windows" && identical(pdfviewer, 
        file.path(R.home("bin"), "open.exe"))) 
        shell.exec(introfile)
    else system2(pdfviewer, shQuote(introfile), wait = FALSE)
}

Try the RcmdrPlugin.lfstat package in your browser

Any scripts or data that you put into this service are public.

RcmdrPlugin.lfstat documentation built on May 2, 2019, 6:48 p.m.