sdmApp: starts the graphical user interface developed with shiny.

Description Usage Arguments Value Examples

Description

starts the graphical user interface developed with shiny.

Usage

1
2
3
4
5
6
7
sdmApp(
  maxRequestSize = 50,
  debug = FALSE,
  theme = "IHSN",
  ...,
  shiny.server = FALSE
)

Arguments

maxRequestSize

(numeric) number defining the maximum allowed file size (in megabytes) for uploaded files, defaults to 50MB

debug

logical if TRUE, set shiny-debugging options

theme

select style sheet for the interface.

...

arguments (e.g host) that are passed through runApp when starting the shiny application

shiny.server

Setting this parameter to TRUE will return the app in the form of an object rather than invoking it. This is useful for deploying sdmApp via shiny-server.

Value

starts the interactive graphical user interface.

Examples

1
2
3
4
5
if(interactive()){
#load the package
library(sdmApp)
sdmApp()
}

sdmApp documentation built on July 7, 2021, 9:06 a.m.