ParetoParameter-class {RobExtremes} | R Documentation |
The class of the parameter of Pareto distributions.
Objects can be created by calls of the form new("ParetoParameter", ...)
.
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”.
Class "Parameter"
, directly.
Class "OptionalParameter"
, by class "Parameter"
.
signature(object = "ParetoParameter")
: access method for
slot shape
.
signature(x = "ParetoParameter")
: access method for
slot Min
.
signature(x = "ParetoParameter")
: access method for
slot Min
.
signature(object = "ParetoParameter")
: replace method for
slot shape
.
signature(x = "ParetoParameter")
: replace method for
slot Min
.
Nataliya Horbenko nhorbenko@gmail.com
(P1 <- new("ParetoParameter"))
Min(P1)
shape(P1)
Min(P1) <- 3
shape(P1) <- 4
P1