gui: Graphical User Interface

Description Usage Arguments Details Value Author(s) Examples

Description

Provides the possibility of using functions in the package through an interactive graphical user interface (GUI). Depending on input, different GUIs are opened.

Usage

1
2
## S4 method for signature 'sdmModels'
gui(x,...)

Arguments

x

a sdm* object

...

not implemented yet.

Details

When x is missing, a GUI is opened to facilitate all the steps required to create sdmData, specify the settings for the different steps, and fit sdm models. Specifying x would be useful to interact with sdm* object. For example, if x is a sdmModels (that is generated by sdm function), a user can interactively explore the results (e.g., to see different plots of model evaluation results).

Value

A HTML page in browser is opened.

Author(s)

Babak Naimi naimi.b@gmail.com

https://www.r-gis.net/

https://www.biogeoinformatics.org

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
file <- system.file("external/model.sdm", package="sdm")

m <- read.sdm(file) # a sdmModels Object (fitted using sdm function)

m

gui(m)


## End(Not run)

sdm documentation built on Nov. 12, 2021, 9:06 a.m.

Related to gui in sdm...