com.supermap.data
Class StatisticsResult
- java.lang.Object
-
- com.supermap.data.StatisticsResult
-
public class StatisticsResult extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description doublegetAverage()Returns the average of the cell values.double[]getMajority()Returns the majority mode of the cell values.doublegetMaxValue()Returns the maximum of the cell values.doublegetMedianValue()Returns the medium of the cell values.double[]getMinority()Returns the dilute value of the cell values.doublegetMinValue()Returns the minimum of the cell values.doublegetStdDeviation()Returns the standard deviation of the cell values.doublegetVariance()Returns the variance of the cell values.booleanisDirty()
-
-
-
Method Detail
-
isDirty
public boolean isDirty()
- Returns:
- Whether it is "Dirty" data.
-
getMaxValue
public double getMaxValue()
Returns the maximum of the cell values.- Returns:
- The maximum of the cell values.
-
getMinValue
public double getMinValue()
Returns the minimum of the cell values.- Returns:
- The minimum of the cell values.
-
getAverage
public double getAverage()
Returns the average of the cell values.- Returns:
- The average of the cell values.
-
getVariance
public double getVariance()
Returns the variance of the cell values.- Returns:
- The variance of the cell values.
-
getStdDeviation
public double getStdDeviation()
Returns the standard deviation of the cell values.- Returns:
- The standard deviation of the cell values.
-
getMedianValue
public double getMedianValue()
Returns the medium of the cell values.- Returns:
- The medium of the cell values.
-
getMinority
public double[] getMinority()
Returns the dilute value of the cell values.- Returns:
- The dilute value of the cell values.
-
getMajority
public double[] getMajority()
Returns the majority mode of the cell values.- Returns:
- The majority value of the cell values.
-
-