Class PersistentStatistic<U extends Unit<U>,T extends AbstractDoubleScalarRel<U,T>>
java.lang.Object
org.opentrafficsim.kpi.sampling.indicator.PersistentStatistic<U,T>
- Type Parameters:
U
- the unit typeT
- type of the value
public class PersistentStatistic<U extends Unit<U>,T extends AbstractDoubleScalarRel<U,T>>
extends java.lang.Object
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Version:
- $Revision$, $LastChangedDate$, by $Author$, initial version 18 okt. 2016
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
Constructor Summary
Constructors Constructor Description PersistentStatistic(Persistent<U,T,?> persistent)
Constructor. -
Method Summary
Modifier and Type Method Description ConfidenceInterval<T>
getConfidenceInterval(double alpha)
ConfidenceInterval<T>
getConfidenceInterval(double alpha, IntervalSide side)
T
getMax()
T
getMean()
T
getMin()
long
getN()
T
getStDev()
T
getSum()
double
getVariance()
java.lang.String
toString()
-
Constructor Details
-
PersistentStatistic
Constructor.- Parameters:
persistent
- Persistent<?,T,?>; the persistent statistic that gathers the data
-
-
Method Details
-
getConfidenceInterval
- Parameters:
alpha
- double; confidence level- Returns:
- both-side confidence interval
-
getConfidenceInterval
- Parameters:
alpha
- double; confidence levelside
- IntervalSide; side of confidence interval- Returns:
- confidence interval
-
getSum
- Returns:
- sum.
-
getMin
- Returns:
- min.
-
getMax
- Returns:
- max.
-
getMean
- Returns:
- mean.
-
getStDev
- Returns:
- stDev.
-
getVariance
public double getVariance()- Returns:
- variance.
-
getN
public long getN()- Returns:
- n.
-
toString
public final java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-