Class GeneralizedParetoLMMEstimator
- java.lang.Object
-
- elki.math.statistics.distribution.estimator.GeneralizedParetoLMMEstimator
-
- All Implemented Interfaces:
DistributionEstimator<GeneralizedParetoDistribution>,LMMDistributionEstimator<GeneralizedParetoDistribution>
@Reference(authors="J. R. M. Hosking, J. R. Wallis, E. F. Wood", title="Estimation of the generalized extreme-value distribution by the method of probability-weighted moments.", booktitle="Technometrics 27.3", url="https://doi.org/10.1080/00401706.1985.10488049", bibkey="doi:10.1080/00401706.1985.10488049") public class GeneralizedParetoLMMEstimator extends java.lang.Object implements LMMDistributionEstimator<GeneralizedParetoDistribution>
Estimate the parameters of a Generalized Pareto Distribution (GPD), using the methods of L-Moments (LMM).Reference:
J. R. M. Hosking, J. R. Wallis, E. F. Wood
Estimation of the generalized extreme-value distribution by the method of probability-weighted moments.
Technometrics 27.3- Since:
- 0.7.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGeneralizedParetoLMMEstimator.ParParameterization class.
-
Field Summary
Fields Modifier and Type Field Description static GeneralizedParetoLMMEstimatorSTATICStatic instance.
-
Constructor Summary
Constructors Modifier Constructor Description privateGeneralizedParetoLMMEstimator()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GeneralizedParetoDistributionestimateFromLMoments(double[] xmom)Estimate from the L-Moments.java.lang.Class<? super GeneralizedParetoDistribution>getDistributionClass()Get the class that is produced by the estimator.intgetNumMoments()The number of moments needed.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.LMMDistributionEstimator
estimate
-
-
-
-
Field Detail
-
STATIC
public static final GeneralizedParetoLMMEstimator STATIC
Static instance.
-
-
Method Detail
-
getNumMoments
public int getNumMoments()
Description copied from interface:LMMDistributionEstimatorThe number of moments needed.- Specified by:
getNumMomentsin interfaceLMMDistributionEstimator<GeneralizedParetoDistribution>- Returns:
- Moments needed.
-
estimateFromLMoments
public GeneralizedParetoDistribution estimateFromLMoments(double[] xmom)
Description copied from interface:LMMDistributionEstimatorEstimate from the L-Moments.- Specified by:
estimateFromLMomentsin interfaceLMMDistributionEstimator<GeneralizedParetoDistribution>- Parameters:
xmom- L-Moments- Returns:
- Distribution
-
getDistributionClass
public java.lang.Class<? super GeneralizedParetoDistribution> getDistributionClass()
Description copied from interface:DistributionEstimatorGet the class that is produced by the estimator.- Specified by:
getDistributionClassin interfaceDistributionEstimator<GeneralizedParetoDistribution>- Returns:
- Distribution class
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-