Interface LogMADDistributionEstimator<D extends Distribution>
-
- Type Parameters:
D
- Distribution estimated.
- All Superinterfaces:
DistributionEstimator<D>
- All Known Implementing Classes:
LogLogisticMADEstimator
,LogNormalLogMADEstimator
,WeibullLogMADEstimator
public interface LogMADDistributionEstimator<D extends Distribution> extends DistributionEstimator<D>
Distribuition estimators that use the method of moments (MOM) in logspace.- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <A> D
estimate(A data, NumberArrayAdapter<?,A> adapter)
General form of the parameter estimationD
estimateFromLogMedianMAD(double median, double mad, double shift)
General form of the parameter estimation-
Methods inherited from interface elki.math.statistics.distribution.estimator.DistributionEstimator
estimate, getDistributionClass
-
-
-
-
Method Detail
-
estimateFromLogMedianMAD
D estimateFromLogMedianMAD(double median, double mad, double shift)
General form of the parameter estimation- 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
-
estimate
default <A> D estimate(A data, NumberArrayAdapter<?,A> adapter)
Description copied from interface:DistributionEstimator
General form of the parameter estimation- Specified by:
estimate
in interfaceDistributionEstimator<D extends Distribution>
- Parameters:
data
- Data setadapter
- Number array adapter- Returns:
- Estimated distribution
-
-