Title: | Into the extRemes Package |
---|---|
Description: | Graphical User Interface (GUI) to some of the functions in the package extRemes version >= 2.0 are included. |
Authors: | Eric Gilleland |
Maintainer: | Eric Gilleland <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.0-3 |
Built: | 2025-03-24 18:22:37 UTC |
Source: | https://github.com/cranhaven/cranhaven.r-universe.dev |
Open the main graphical user interface dialog window for extreme value analysis (EVA).
in2extRemes()
in2extRemes()
This package provides point-and-click windows for performing extreme value analysis using the package extRemes version >= 2.0.
The function in2extRemes
is used to open the main dialog window from the command line.
No value is returned. A GUI window is opened from which other functions can be called that might return various object types.
Eric Gilleland
http://www.assessment.ucar.edu/toolkit
## Not run: in2extRemes() ## End(Not run)
## Not run: in2extRemes() ## End(Not run)
Convert a data frame, matrix or vector into an object readable by the in2extRemes windows.
as.in2extRemesDataObject(x)
as.in2extRemesDataObject(x)
x |
data frame, matrix or numeric vector. |
Sets up a list object with a data component that contains the datafram x
, or if x
is a matrix or vector, it is first converted to a data frame using as.data.frame
. If x
is a vector, an additional column, named “obs”, is added that contains an index of the row number. It is then given the class “in2extRemesDataObject” and returned.
A list of class “in2extRemesDataObject” with component:
data |
x as a data frame. |
Eric Gilleland
look <- apply(matrix(rnorm(100 * 100), 100, 100), 2, max, na.rm = TRUE) look2 <- as.in2extRemesDataObject(look)
look <- apply(matrix(rnorm(100 * 100), 100, 100), 2, max, na.rm = TRUE) look2 <- as.in2extRemesDataObject(look)