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
      double getAverage()
      Returns the average of the cell values.
      double[] getMajority()
      Returns the majority mode of the cell values.
      double getMaxValue()
      Returns the maximum of the cell values.
      double getMedianValue()
      Returns the medium of the cell values.
      double[] getMinority()
      Returns the dilute value of the cell values.
      double getMinValue()
      Returns the minimum of the cell values.
      double getStdDeviation()
      Returns the standard deviation of the cell values.
      double getVariance()
      Returns the variance of the cell values.
      boolean isDirty() 
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.