Interface IConfidenceEstimator

All Known Implementing Classes:
SampleMeanEstimator

public interface IConfidenceEstimator
Interface for classes which are capable of estimating a confidence interval around a point estimation.
  • Method Details

    • estimateConfidence

      ConfidenceInterval estimateConfidence(List<Double> samples, double level)
      Estimates the confidence interval.
      Parameters:
      samples - the values for which a confidence interval is to be estimated.
      level - the confidence level. Use values between 0 and 1. For instance use 0.95 to estimate the 95% confidence interval.
      Returns: