Class LogLogisticMADEstimator
- java.lang.Object
-
- elki.math.statistics.distribution.estimator.LogLogisticMADEstimator
-
- All Implemented Interfaces:
DistributionEstimator<LogLogisticDistribution>
,LogMADDistributionEstimator<LogLogisticDistribution>
@Reference(authors="D. J. Olive", title="Applied Robust Statistics", booktitle="", url="http://lagrange.math.siu.edu/Olive/preprints.htm", bibkey="books/Olive08") public class LogLogisticMADEstimator extends java.lang.Object implements LogMADDistributionEstimator<LogLogisticDistribution>
Estimate Logistic distribution parameters using Median and MAD.Reference:
D. J. Olive
Applied Robust Statistics
Preprint, University of Minnesota- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LogLogisticMADEstimator.Par
Parameterization class.
-
Field Summary
Fields Modifier and Type Field Description static LogLogisticMADEstimator
STATIC
Static instance.
-
Constructor Summary
Constructors Modifier Constructor Description private
LogLogisticMADEstimator()
Private constructor, use static instance!
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LogLogisticDistribution
estimateFromLogMedianMAD(double median, double mad, double shift)
General form of the parameter estimationjava.lang.Class<? super LogLogisticDistribution>
getDistributionClass()
Get the class that is produced by the estimator.java.lang.String
toString()
-
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.LogMADDistributionEstimator
estimate
-
-
-
-
Field Detail
-
STATIC
public static final LogLogisticMADEstimator STATIC
Static instance.
-
-
Method Detail
-
estimateFromLogMedianMAD
public LogLogisticDistribution estimateFromLogMedianMAD(double median, double mad, double shift)
Description copied from interface:LogMADDistributionEstimator
General form of the parameter estimation- Specified by:
estimateFromLogMedianMAD
in interfaceLogMADDistributionEstimator<LogLogisticDistribution>
- Parameters:
median
- Median lof log values.mad
- Median absolute deviation from median (in logspace).shift
- Shift offset that was used to avoid negative values.- Returns:
- Estimated distribution
-
getDistributionClass
public java.lang.Class<? super LogLogisticDistribution> getDistributionClass()
Description copied from interface:DistributionEstimator
Get the class that is produced by the estimator.- Specified by:
getDistributionClass
in interfaceDistributionEstimator<LogLogisticDistribution>
- Returns:
- Distribution class
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-