public interface IndexedSampleStatistics extends SampleStatistics
EOL
Modifier and Type | Method and Description |
---|---|
int[] |
getAllCount()
Gets the current number of observations for all of the properties in the
indexed property associated with this statistic.
|
double[] |
getAllMaxObs()
Gets the maximum value of all of the properties in the indexed property
associated with this statistic.
|
double[] |
getAllMean()
Gets the current mean of all of the properties in the indexed property
associated with this statistic.
|
double[] |
getAllMinObs()
Gets the minimum value of all of the properties in the indexed property
associated with this statistic.
|
SampleStatistics[] |
getAllSampleStat()
Gets the underlying SampleStatistics for all of the properties in the
indexed property associated with this statistic.
|
double[] |
getAllStandardDeviation()
Gets the current standard deviation of all of the properties in the
indexed property associated with this statistic.
|
double[] |
getAllVariance()
Gets the current variance of all of the properties in the indexed
property associated with this statistic.
|
int |
getCount(int index) |
double |
getMaxObs(int index) |
double |
getMean(int index) |
double |
getMinObs(int index) |
double |
getStandardDeviation(int index) |
double |
getVariance(int index) |
void |
newObservation(double value,
int index)
Adds a new observation for the given member of the collection of
properties associated with this SampleStatistic.
|
void |
newObservation(java.lang.Number newObs,
int index)
Adds a new observation for the given member of the collection of
properties associated with this SampleStatistic.
|
getCount, getMaxObs, getMean, getMinObs, getName, getSamplingType, getStandardDeviation, getVariance, newObservation, newObservation, newObservation, newObservation, reset, setName, setNumberFormat, setSamplingType
void newObservation(double value, int index)
value
- The current value of the property.index
- The index of the property.void newObservation(java.lang.Number newObs, int index)
newObs
- The new observationindex
- The index of the property.double getMean(int index)
index
- The index of the property.double getVariance(int index)
index
- The index of the property.double getStandardDeviation(int index)
index
- The index of the property.int getCount(int index)
index
- The index of the property.double getMinObs(int index)
index
- The index of the property.double getMaxObs(int index)
index
- The index of the property.double[] getAllMean()
double[] getAllVariance()
double[] getAllStandardDeviation()
int[] getAllCount()
double[] getAllMinObs()
double[] getAllMaxObs()
SampleStatistics[] getAllSampleStat()