R/javadoc.R

# this really should be in rJava
javadoc <- function( package = "RemoteREngine", browse = TRUE ){
    link <- system.file( "javadoc", "index.html", package = package )
    if( file.exists( link ) ){
        if( browse ) {
            browseURL( link )
        } 
        invisible( link )
    } else{
        warning( gettextf( "package '%s' does not have javadoc documentation" ) )
    }
    
}

Try the RemoteREngine package in your browser

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

RemoteREngine documentation built on May 2, 2019, 5 p.m.