ParetoParameter-class {RobExtremes} | R Documentation |
Paramter of Pareto distributions
Description
The class of the parameter of Pareto distributions.
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 slotshape
.- Min
signature(x = "ParetoParameter")
: access method for slotMin
.- scale
signature(x = "ParetoParameter")
: access method for slotMin
.- shape<-
signature(object = "ParetoParameter")
: replace method for slotshape
.- Min<-
signature(x = "ParetoParameter")
: replace method for slotMin
.
Author(s)
Nataliya Horbenko nhorbenko@gmail.com
See Also
Examples
(P1 <- new("ParetoParameter"))
Min(P1)
shape(P1)
Min(P1) <- 3
shape(P1) <- 4
P1
[Package RobExtremes version 1.3.0 Index]