Extra Continuous Distributions
AdditionalDistributions.Alpha Type
Alpha(α, β)An Alpha distribution is defined by the following probability density function (PDF):
where:
is a location parameter is a scale parameter is the cumulative distribution function (CDF) of the standard normal distribution.
Alpha() # equivalent to Alpha(1, 1)
params(d) # Get the parameters, i.e. (α, β)using Distributions, AdditionalDistributionsAdditionalDistributions.Argus Type
Argus(χ, c)A Argus distribution, which is used in particle physics to describe the invariant mass of a decayed particle candidate. The probability density function (pdf) of the ARGUS distribution is given by:
Argus() # equivalent to Argus(1, 1)
params(d) # Get the parameters, i.e. (χ, c)External links:
sourceAdditionalDistributions.Benini Type
A Benini distribution, which is a three-parameter distribution often used in economics and actuarial science. The probability density function (pdf) of the Benini distribution is given by:
Benini() # equivalent to Benini(1, 1, 1)
Benini(α) # equivalent to Benini(α, 1, 1)
Benini(α, β) # equivalent to Benini(α, β, 1)
params(d) # Get the parameters, i.e. (α, β, σ)External links:
sourceAdditionalDistributions.Benktander_Type1 Type
Benktander_Type1(a, b)A Benktander_Type1 distribution, which is used in actuarial science for modeling heavy-tailed distributions. The probability density function (pdf) of the Benktander Type 1 distribution is given by:
Benktander_Type1() # equivalent to Benktander_Type1(1, 1)
Benktander_Type1(a) # equivalent to Benktander_Type1(a, a(a+1)/2)
params(d) # Get the parameters, i.e. (a, b)External links:
sourceAdditionalDistributions.Benktander_Type2 Type
Benktander_Type2(a, b)A Benktander_Type2 distribution, which is used in actuarial science for modeling heavy-tailed distributions. The probability density function (pdf) of the Benktander Type 2 distribution is given by:
Benktander_Type2() # equivalent to Benktander_Type2(1, 1)
Benktander_Type2(a) # equivalent to Benktander_Type2(a, 1)
params(d) # Get the parameters, i.e. (a, b)External links:
sourceAdditionalDistributions.Bhattacharjee Type
Bhattacharjee(a, b, σ)A Bhattacharjee distribution is a continuous univariate distribution where the mean follows a rectangular (uniform) distribution and the conditional distribution given the mean is normal. Specifically, if the mean θ follows a uniform distribution between a and b, and the conditional distribution of X given θ is normal with mean θ and standard deviation σ, then X follows a Bhattacharjee distribution.
Bhattacharjee() # equivalent to Bhattacharjee(0, 1, 1)
Bhattacharjee(σ) # equivalent to Bhattacharjee(0, 1, σ)
params(d) # Get the parameters, i.e. (a , b, σ)External link:
*Bhattacharjee Distributions on Technometrics
sourceAdditionalDistributions.BirnbaumSaunders Type
BirnbaumSaunders(μ, α, β)A BirnbaumSaunders distribution, also known as the fatigue life distribution, is used to model life data and times to failure. It is defined by three parameters: the location parameter ( \mu ), the shape parameter ( \alpha ), and the scale parameter ( \beta ). The probability density function (PDF) of the Birnbaum-Saunders distribution is given by:
BirnbaumSaunders() # equivalent to BirnbaumSaunders(0, 1, 1)
BirnbaumSaunders(σ) # equivalent to BirnbaumSaunders(0, α, 1)
BirnbaumSaunders(σ,β) # equivalent to BirnbaumSaunders(0, α, β)
params(d) # Get the parameters, i.e. (μ , α, β)External links:
sourceAdditionalDistributions.Bradford Type
Bradford(a)A Bradford distribution is defined by the following probability density function (PDF):
where:
Bradford() # equivalent to Bradford(1)
params(d) # Get the parameters, i.e. aExternal links:
sourceAdditionalDistributions.Burr Type
Burr(c, k, λ)An Burr distribution is defined by three parameters: c and k are shape parameters and
The probability density function (PDF) of the Burr distribution is given by:
Burr() # equivalent to Burr(1, 1, 1)
Burr(c) # equivalent to Burr(c, 1, 1)
Burr(c, k) # equivalent to Burr(c, k, 1)
params(d) # Get the parameters, i.e. (c, k, λ)External links:
sourceAdditionalDistributions.CrystalBall Type
CrystalBall(α, m, x̄, σ)A CrystalBall distribution is commonly used to model various lossy processes in high-energy physics. The probability density function (PDF) of the Crystal Ball distribution is defined as:
where:
CrystalBall(α, m) # equivalent to CrystalBall(α, m, 0, 1)
CrystalBall(α, m, x̄) # equivalent to CrystalBall(α, m, x̄, 1)
params(d) # Get the parameters, i.e. (α, m, x̄, σ)External links:
sourceAdditionalDistributions.Dagum Type
Dagum(a, b, p)A Dagum distribution is defined by three parameters: a, b, and p. It is commonly used in economics for modeling income distributions. The probability density function (PDF) of the Dagum distribution is given by:
Dagum() # equivalent to Dagum(1, 1, 1)
Dagum(a) # equivalent to Dagum(a, 1, 1)
Dagum(a, b) # equivalent to Dagum(a, b, 1)
params(d) # Get the parameters, i.e. (a, b, p)External links:
sourceAdditionalDistributions.Gompertz Type
Gompertz(η , b)A Gompertz distribution is commonly used to describe the distribution of adult lifespans and model survival data. The probability density function (PDF) of the Gompertz distribution is given by:
Gompertz() # equivalent to Gompertz(1, 1)
Gompertz(η) # equivalent to Gompertz(η, 1)
params(d) # Get the parameters, i.e. (η, b)External links:
sourceAdditionalDistributions.Lomax Type
Lomax(α, λ)A Lomax distribution, also known as the Pareto Type II distribution, is commonly used in business, economics, and actuarial science. The probability density function (PDF) of the Lomax distribution is given by:
where:
is a shape parameter is a scale parameter
Lomax() # equivalent to Lomax(1, 1)
Lomax(α) # equivalent to Lomax(α, 1)
params(d) # Get the parameters, i.e. (α, λ)External links:
sourceAdditionalDistributions.Maxwell Type
Maxwell(a)A Maxwell-Boltzmann distribution, often used in physics to describe the distribution of particle speeds in idealized gases, is defined by the following probability density function (PDF):
Maxwell() # equivalent to Maxwell(1)
params(d) # Get the parameters, i.e. aExternal links:
sourceAdditionalDistributions.Nakagami Type
Nakagami(m, Ω)A Nakagami distribution, often used to model physical phenomena in areas such as medical ultrasound imaging and communications, is defined by the following probability density function (PDF):
where:
m is a shape parameter
is a spread parameter
Nakagami() # equivalent to Nakagami(0.5, 1)
Nakagami(m) # equivalent to Nakagami(m, 1)
params(d) # Get the parameters, i.e. (m, Ω)External links:
sourceAdditionalDistributions.PERT Type
PERT(a, b, m)A PERT distribution is commonly used in project management for modeling the uncertainty of task durations. The probability density function (PDF) of the PERT distribution is given by:
where:
is a beta function
PERT() # equivalent to PERT(0, 0.5, 1)
params(d) # Get the parameters, i.e. (a, b, m)External links:
source