Class LogGammaLogMOMEstimator
- java.lang.Object
-
- elki.math.statistics.distribution.estimator.LogGammaLogMOMEstimator
-
- All Implemented Interfaces:
DistributionEstimator<LogGammaDistribution>,LogMOMDistributionEstimator<LogGammaDistribution>
public class LogGammaLogMOMEstimator extends java.lang.Object implements LogMOMDistributionEstimator<LogGammaDistribution>
Simple parameter estimation for the LogGamma distribution. This is a very naive estimation, based on the mean and variance only, sometimes referred to as the "Method of Moments" (MOM). This estimator based on theGammaMOMEstimatorand a simple log data transformation.- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLogGammaLogMOMEstimator.ParParameterization class.
-
Field Summary
Fields Modifier and Type Field Description static LogGammaLogMOMEstimatorSTATICStatic estimation using just the mean and variance.
-
Constructor Summary
Constructors Modifier Constructor Description privateLogGammaLogMOMEstimator()Private constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LogGammaDistributionestimateFromLogStatisticalMoments(StatisticalMoments mv, double shift)General form of the parameter estimationjava.lang.Class<? super LogGammaDistribution>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.LogMOMDistributionEstimator
estimate
-
-
-
-
Field Detail
-
STATIC
public static final LogGammaLogMOMEstimator STATIC
Static estimation using just the mean and variance.
-
-
Method Detail
-
estimateFromLogStatisticalMoments
public LogGammaDistribution estimateFromLogStatisticalMoments(StatisticalMoments mv, double shift)
Description copied from interface:LogMOMDistributionEstimatorGeneral form of the parameter estimation- Specified by:
estimateFromLogStatisticalMomentsin interfaceLogMOMDistributionEstimator<LogGammaDistribution>- Parameters:
mv- Statistical momentsshift- Shifting offset that was used- Returns:
- Estimated distribution
-
getDistributionClass
public java.lang.Class<? super LogGammaDistribution> getDistributionClass()
Description copied from interface:DistributionEstimatorGet the class that is produced by the estimator.- Specified by:
getDistributionClassin interfaceDistributionEstimator<LogGammaDistribution>- Returns:
- Distribution class
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-