R/prostar.R

Defines functions Prostar

Documented in Prostar

##' Prostar : a GUI for DAPAR
##' 
##' @title Prostar
##' @return A new window in the default internet browser
##' @author Samuel Wieczorek
##' @examples
##' if(interactive()) {Prostar()}
Prostar <-
function(){
        G <- .GlobalEnv
if (interactive()){
    options(shiny.maxRequestSize=1024^3)
    a=shiny::runApp(system.file("ProstarApp",package="Prostar"),
                    launch.browser = TRUE)
    return(invisible(a))
} else {return (NULL)}
}

Try the Prostar package in your browser

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

Prostar documentation built on April 11, 2021, 6 p.m.