GEV: Generating function for GEV-class

View source: R/GEV.R

GEVR Documentation

Generating function for GEV-class

Description

Generates an object of class "GEV".

Usage

GEV(loc = 0, scale = 1, shape = 0, location = loc)

Arguments

loc

real number: location parameter of the GEV distribution.

scale

positive real number: scale parameter of the GEV distribution

shape

non-negative real number: shape parameter of the GEV distribution.

location

real number: location of GEV distribution

Value

Object of class "GEV"

Note

The class "GEV" is based on the code provided by the package evd by Alec Stephenson.

Author(s)

Nataliya Horbenko nhorbenko@gmail.com

See Also

GEV-class, dgpd

Examples

(P1 <- GEV(loc = 0, scale = 1, shape = 0))
plot(P1)

E(GEV()) 
E(P1)
E(P1, function(x){x^2})
var(P1)
sd(P1)
median(P1)
IQR(P1)
mad(P1)


RobExtremes documentation built on Feb. 12, 2024, 3:01 a.m.

Related to GEV in RobExtremes...