RobExtremes (version 1.2.0)

ParetoParameter-class: Paramter of Pareto distributions

Description

The class of the parameter of Pareto distributions.

Arguments

Objects from the Class

Objects can be created by calls of the form new("ParetoParameter", ...).

Slots

shape

real number: shape parameter of a Pareto distribution.

Min

positive real number: Min parameter of a Pareto distribution.

name

default name is “parameter of a Pareto distribution”.

Extends

Class "Parameter", directly. Class "OptionalParameter", by class "Parameter".

Methods

shape

signature(object = "ParetoParameter"): access method for slot shape.

Min

signature(x = "ParetoParameter"): access method for slot Min.

scale

signature(x = "ParetoParameter"): access method for slot Min.

shape<-

signature(object = "ParetoParameter"): replace method for slot shape.

Min<-

signature(x = "ParetoParameter"): replace method for slot Min.

See Also

Pareto-class, Parameter-class

Examples

Run this code
# NOT RUN {
(P1 <- new("ParetoParameter"))
Min(P1)
shape(P1)

Min(P1) <- 3
shape(P1) <- 4
P1

# }

Run the code above in your browser using DataCamp Workspace