package org.djutils.stats.summarizers; /** * The Tally interface defines the methods to be implemented by a tally object, which ingests a series of values and provides * mean, standard deviation, etc. of the ingested values. *
* Copyright (c) 2002-2020 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
* for project information https://simulation.tudelft.nl. The DSOL
* project is distributed under a three-clause BSD-style license, which can be found at
*
* https://simulation.tudelft.nl/dsol/3.0/license.html.
*
* @author Alexander Verbraeck
* @author Peter Jacobs
* @author Peter Knoppers
*/
interface TallyInterface extends BasicTallyInterface
{
/**
* Process one observed value.
* @param value double; the value to process
* @return double; the value
*/
double ingest(double value);
/**
* Returns the sampleMean of all observations since the initialization.
* @return double the sampleMean
*/
double getSampleMean();
/**
* Returns the current tally standard deviation.
* @return double the standard deviation
*/
double getStdDev();
/**
* returns the sum of the values of the observations.
* @return double sum
*/
double getSum();
/**
* Returns the current variance of this tally.
* @return double; the current variance of this tally
*/
double getSampleVariance();
/**
* Compute a quantile.
* @param probability double; the probability for which the quantile is to be computed
* @return double; the quantile for the probability
*/
double getQuantile(double probability);
/**
* returns the confidence interval on either side of the mean.
* @param alpha double; Alpha is the significance level used to compute the confidence level. The confidence level equals
* 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level.
* @return double[] the confidence interval of this tally
*/
double[] getConfidenceInterval(double alpha);
/**
* returns the confidence interval based of the mean.
* @param alpha double; Alpha is the significance level used to compute the confidence level. The confidence level equals
* 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level.
* @param side short; the side of the confidence interval with respect to the mean
* @return double[] the confidence interval of this tally
*/
double[] getConfidenceInterval(double alpha, ConfidenceInterval side);
}