Catalano.Statistics.Distributions
Class ParetoDistribution
- java.lang.Object
-
- Catalano.Statistics.Distributions.ParetoDistribution
-
- All Implemented Interfaces:
- IDistribution
public class ParetoDistribution extends java.lang.Object implements IDistribution
Pareto's Distribution.The Pareto distribution, named after the Italian economist Vilfredo Pareto, is a power law probability distribution that coincides with social, scientific, geophysical, actuarial, and many other types of observable phenomena. Outside the field of economics it is sometimes referred to as the Bradford distribution.
-
-
Constructor Summary
Constructors Constructor and Description ParetoDistribution(double scale, double shape)Creates new Pareto distribution.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description doubleDistributionFunction(double x)Gets the cumulative distribution function (cdf) for this distribution evaluated at pointx .doubleEntropy()Gets the entropy for this distribution.doubleLogProbabilityDensityFunction(double x)Gets the log-probability density function (pdf) for this distribution evaluated at pointx .doubleMean()Gets the mean for this distribution.doubleMedian()Gets the median for this distribution.doubleMode()Gets the mode for this distribution.doubleProbabilityDensityFunction(double x)Gets the probability density function (pdf) for this distribution evaluated at pointx .doubleVariance()Gets the variance for this distribution.
-
-
-
Constructor Detail
-
ParetoDistribution
public ParetoDistribution(double scale, double shape)Creates new Pareto distribution.- Parameters:
scale- The scale parameter x.shape- The shape parameter alpha.
-
-
Method Detail
-
Mean
public double Mean()
Description copied from interface:IDistributionGets the mean for this distribution.- Specified by:
Meanin interfaceIDistribution- Returns:
- The distribution's mean value.
-
Variance
public double Variance()
Description copied from interface:IDistributionGets the variance for this distribution.- Specified by:
Variancein interfaceIDistribution- Returns:
- The distribution's variance.
-
Entropy
public double Entropy()
Description copied from interface:IDistributionGets the entropy for this distribution.- Specified by:
Entropyin interfaceIDistribution- Returns:
- The distribution's entropy.
-
Mode
public double Mode()
Gets the mode for this distribution.- Returns:
- The distribution's mode value.
-
Median
public double Median()
Gets the median for this distribution.- Returns:
- The distribution's median value.
-
DistributionFunction
public double DistributionFunction(double x)
Description copied from interface:IDistributionGets the cumulative distribution function (cdf) for this distribution evaluated at pointx .
The Cumulative Distribution Function (CDF) describes the cumulative probability that a given value or any value smaller than it will occur.- Specified by:
DistributionFunctionin interfaceIDistribution- Parameters:
x- A single point in the distribution range.- Returns:
- The probability of
x occurring in the current distribution.
-
ProbabilityDensityFunction
public double ProbabilityDensityFunction(double x)
Description copied from interface:IDistributionGets the probability density function (pdf) for this distribution evaluated at pointx .
The Probability Density Function (PDF) describes the probability that a given valuex will occur.- Specified by:
ProbabilityDensityFunctionin interfaceIDistribution- Parameters:
x- A single point in the distribution range.- Returns:
- The probability of
x occurring in the current distribution.
-
LogProbabilityDensityFunction
public double LogProbabilityDensityFunction(double x)
Description copied from interface:IDistributionGets the log-probability density function (pdf) for this distribution evaluated at pointx .
The Probability Density Function (PDF) describes the probability that a given valuex will occur.- Specified by:
LogProbabilityDensityFunctionin interfaceIDistribution- Parameters:
x- A single point in the distribution range.- Returns:
- The probability of
x occurring in the current distribution.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG