Class EmpiricalACERStatistics
- java.lang.Object
-
- dev.nm.stat.evt.evd.univariate.fitting.acer.empirical.EmpiricalACERStatistics
-
public class EmpiricalACERStatistics extends Object
This class contains the computed statistics of the estimated ACERs.
-
-
Constructor Summary
Constructors Constructor Description EmpiricalACERStatistics(double[] mean, double[] confidenceInterval)
Create an instance for storing the computed statistics for estimated epsilon for various barrier levels.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
getConfidenceInterval()
Get the width of half of the confidence interval, that is, the interval is mean +/- width.double[]
getMean()
Get the mean of the empirical estimates for each barrier level.
-
-
-
Constructor Detail
-
EmpiricalACERStatistics
public EmpiricalACERStatistics(double[] mean, double[] confidenceInterval)
Create an instance for storing the computed statistics for estimated epsilon for various barrier levels.- Parameters:
mean
- the means of the estimated epsilonsconfidenceInterval
- the confidence interval half-widths
-
-
Method Detail
-
getMean
public double[] getMean()
Get the mean of the empirical estimates for each barrier level.- Returns:
- the mean of the estimated ACERs \(\bar{\epsilon_k}(\eta_i)\)
-
getConfidenceInterval
public double[] getConfidenceInterval()
Get the width of half of the confidence interval, that is, the interval is mean +/- width.- Returns:
- the half confidence interval width of the estimates
-
-