public interface ObjectIndexedStatistics
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.Object,java.lang.Integer> |
getAllCount()
Gets the current number of observations for all of the properties in the
indexed property associated with this statistic.
|
java.util.Map<java.lang.Object,java.lang.Double> |
getAllMaxObs()
Gets the maximum value of all of the properties in the indexed property
associated with this statistic.
|
java.util.Map<java.lang.Object,java.lang.Double> |
getAllMean()
Gets the current mean of all of the properties in the indexed property
associated with this statistic.
|
java.util.Map<java.lang.Object,java.lang.Double> |
getAllMinObs()
Gets the minimum value of all of the properties in the indexed property
associated with this statistic.
|
java.util.Map<java.lang.Object,SampleStatistics> |
getAllSampleStat()
Gets the underlying SampleStatistics for all of the properties in the
indexed property associated with this statistic.
|
java.util.Map<java.lang.Object,java.lang.Double> |
getAllStandardDeviation()
Gets the current standard deviation of all of the properties in the
indexed property associated with this statistic.
|
java.util.Map<java.lang.Object,java.lang.Double> |
getAllVariance()
Gets the current variance of all of the properties in the indexed
property associated with this statistic.
|
int |
getCount(java.lang.Object source) |
double |
getMaxObs(java.lang.Object source) |
double |
getMean(java.lang.Object source) |
double |
getMinObs(java.lang.Object source) |
double |
getStandardDeviation(java.lang.Object source) |
double |
getVariance(java.lang.Object source) |
void |
newObservation(double value,
java.lang.Object source)
Adds a new observation for the given member of the collection of
properties associated with this SampleStatistic.
|
void |
newObservation(java.lang.Number newObs,
java.lang.Object source)
Adds a new observation for the given member of the collection of
properties associated with this SampleStatistic.
|
void newObservation(double value, java.lang.Object source)
value
- The current value of the property.source
- void newObservation(java.lang.Number newObs, java.lang.Object source)
newObs
- The new observationsource
- double getMean(java.lang.Object source)
source
- double getVariance(java.lang.Object source)
source
- double getStandardDeviation(java.lang.Object source)
source
- int getCount(java.lang.Object source)
source
- double getMinObs(java.lang.Object source)
source
- double getMaxObs(java.lang.Object source)
source
- java.util.Map<java.lang.Object,java.lang.Double> getAllMean()
java.util.Map<java.lang.Object,java.lang.Double> getAllVariance()
java.util.Map<java.lang.Object,java.lang.Double> getAllStandardDeviation()
java.util.Map<java.lang.Object,java.lang.Integer> getAllCount()
java.util.Map<java.lang.Object,java.lang.Double> getAllMinObs()
java.util.Map<java.lang.Object,java.lang.Double> getAllMaxObs()
java.util.Map<java.lang.Object,SampleStatistics> getAllSampleStat()