Class GammaMOMEstimator
- java.lang.Object
-
- elki.math.statistics.distribution.estimator.GammaMOMEstimator
-
- All Implemented Interfaces:
DistributionEstimator<GammaDistribution>,MeanVarianceDistributionEstimator<GammaDistribution>,MOMDistributionEstimator<GammaDistribution>
@Reference(authors="G. Casella, R. L. Berger", title="Point Estimation (Chapter 7)", booktitle="Statistical inference. Vol. 70", bibkey="books/duxbury/CasellaB90/Ch7") public class GammaMOMEstimator extends java.lang.Object implements MeanVarianceDistributionEstimator<GammaDistribution>
Simple parameter estimation for the Gamma distribution.This is a very naive estimation, based on the mean and variance only, sometimes referred to as the "Method of Moments" (MOM).
Reference:
G. Casella, R. L. Berger
Point Estimation (Chapter 7)
Statistical inference. Vol. 70- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGammaMOMEstimator.ParParameterization class.
-
Field Summary
Fields Modifier and Type Field Description static GammaMOMEstimatorSTATICStatic estimation using just the mean and variance.
-
Constructor Summary
Constructors Modifier Constructor Description privateGammaMOMEstimator()Private constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GammaDistributionestimateFromMeanVariance(MeanVariance mv)Estimate the distribution from mean and variance.java.lang.Class<? super GammaDistribution>getDistributionClass()Get the class that is produced by the estimator.java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface elki.math.statistics.distribution.estimator.DistributionEstimator
estimate
-
Methods inherited from interface elki.math.statistics.distribution.estimator.MeanVarianceDistributionEstimator
estimate, estimateFromStatisticalMoments
-
-
-
-
Field Detail
-
STATIC
public static final GammaMOMEstimator STATIC
Static estimation using just the mean and variance.
-
-
Method Detail
-
estimateFromMeanVariance
public GammaDistribution estimateFromMeanVariance(MeanVariance mv)
Description copied from interface:MeanVarianceDistributionEstimatorEstimate the distribution from mean and variance.- Specified by:
estimateFromMeanVariancein interfaceMeanVarianceDistributionEstimator<GammaDistribution>- Parameters:
mv- Mean and variance.- Returns:
- Distribution
-
getDistributionClass
public java.lang.Class<? super GammaDistribution> getDistributionClass()
Description copied from interface:DistributionEstimatorGet the class that is produced by the estimator.- Specified by:
getDistributionClassin interfaceDistributionEstimator<GammaDistribution>- Returns:
- Distribution class
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-