Pareto {distrEx} | R Documentation |
Generates an object of class "Pareto"
.
Pareto(shape = 1, Min = 1)
shape |
positive real number: shape parameter of the Pareto distribution. |
Min |
positive real number: Min parameter of the Pareto distribution |
Object of class "Pareto"
The class "Pareto"
is based on the code provided
by the package actuar by Vincent Goulet and Mathieu Pigeon.
Nataliya Horbenko Nataliya.Horbenko@itwm.fraunhofer.de
(P1 <- Pareto(shape = 1, Min = 1)) plot(P1) E(Pareto()) E(P1, function(x){x^2}) ## The function is currently defined as function(shape = 1, Min = 1) new("Pareto", shape = shape, Min = Min)