distrEx (version 2.2)

Pareto: Generating function for Pareto-class

Description

Generates an object of class "Pareto".

Usage

Pareto(shape = 1, Min = 1)

Arguments

shape
positive real number: shape parameter of the Pareto distribution.
Min
positive real number: Min parameter of the Pareto distribution

Value

  • Object of class "Pareto"

concept

  • Pareto
  • absolutely continuous distribution
  • Pareto distribution
  • generating function

See Also

Pareto-class, dpareto1

Examples

Run this code
(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)

Run the code above in your browser using DataCamp Workspace