Class InverseGaussianDistribution
- java.lang.Object
-
- elki.math.statistics.distribution.InverseGaussianDistribution
-
- All Implemented Interfaces:
Distribution
@Alias({"invgauss","wald"}) public class InverseGaussianDistribution extends java.lang.Object implements Distribution
Inverse Gaussian distribution aka Wald distribution.Beware that SciPy uses a different location parameter.
InverseGaussian(a, x) ~ scipy.stats.invgauss(a/x, x)Our parameter scheme is in line with common literature. SciPy naming scheme has comparable notion of location and scale across distributions. So both have their benefits.
- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInverseGaussianDistribution.ParParameterization class-
Nested classes/interfaces inherited from interface elki.math.statistics.distribution.Distribution
Distribution.Parameterizer
-
-
Constructor Summary
Constructors Constructor Description InverseGaussianDistribution(double mean, double shape)Constructor for Inverse Gaussian / Wald distribution.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description doublecdf(double val)Return the cumulative density function at the given value.static doublecdf(double x, double mu, double shape)Cumulative probability density function (CDF) of a Wald distribution.doublegetMean()Mean parameter.doublegetShape()Shape parameter.doublelogpdf(double val)Return the log density of an existing valuestatic doublelogpdf(double x, double mu, double shape)Probability density function of the Wald distribution.doublenextRandom(java.util.Random random)Generate a new random valuedoublepdf(double val)Return the density of an existing valuestatic doublepdf(double x, double mu, double shape)Probability density function of the Wald distribution.doublequantile(double q)Deprecated.NOT YET IMPLEMENTED.static doublequantile(double x, double mu, double shape)Deprecated.NOT YET IMPLEMENTED.java.lang.StringtoString()Describe the distribution
-
-
-
Method Detail
-
getMean
public double getMean()
Mean parameter.- Returns:
- Mean
-
getShape
public double getShape()
Shape parameter.- Returns:
- Shape
-
pdf
public double pdf(double val)
Description copied from interface:DistributionReturn the density of an existing value- Specified by:
pdfin interfaceDistribution- Parameters:
val- existing value- Returns:
- distribution density
-
logpdf
public double logpdf(double val)
Description copied from interface:DistributionReturn the log density of an existing value- Specified by:
logpdfin interfaceDistribution- Parameters:
val- existing value- Returns:
- log distribution density
-
cdf
public double cdf(double val)
Description copied from interface:DistributionReturn the cumulative density function at the given value.- Specified by:
cdfin interfaceDistribution- Parameters:
val- existing value- Returns:
- cumulative density
-
quantile
@Deprecated public double quantile(double q)
Deprecated.NOT YET IMPLEMENTED.Description copied from interface:DistributionQuantile aka probit (for normal) aka inverse CDF (invcdf, cdf^-1) function.- Specified by:
quantilein interfaceDistribution- Parameters:
q- Quantile to find- Returns:
- Quantile position
-
nextRandom
public double nextRandom(java.util.Random random)
Description copied from interface:DistributionGenerate a new random value- Specified by:
nextRandomin interfaceDistribution- Parameters:
random- Random number generator- Returns:
- new random value
-
toString
public java.lang.String toString()
Description copied from interface:DistributionDescribe the distribution- Specified by:
toStringin interfaceDistribution- Overrides:
toStringin classjava.lang.Object- Returns:
- description
-
pdf
public static double pdf(double x, double mu, double shape)Probability density function of the Wald distribution.- Parameters:
x- The value.mu- The mean.shape- Shape parameter- Returns:
- PDF of the given Wald distribution at x.
-
logpdf
public static double logpdf(double x, double mu, double shape)Probability density function of the Wald distribution.- Parameters:
x- The value.mu- The mean.shape- Shape parameter- Returns:
- log PDF of the given Wald distribution at x.
-
cdf
public static double cdf(double x, double mu, double shape)Cumulative probability density function (CDF) of a Wald distribution.- Parameters:
x- value to evaluate CDF atmu- Mean valueshape- Shape parameter- Returns:
- The CDF of the given Wald distribution at x.
-
quantile
@Deprecated public static double quantile(double x, double mu, double shape)Deprecated.NOT YET IMPLEMENTED.Inverse cumulative probability density function (probit) of a Wald distribution.- Parameters:
x- value to evaluate probit function atmu- Mean valueshape- Shape parameter- Returns:
- The probit of the given Wald distribution at x.
-
-