Class SampleStatistics

java.lang.Object
llnl.gnem.core.util.seriesMathHelpers.SampleStatistics
All Implemented Interfaces:
Serializable

public class SampleStatistics extends Object implements Serializable
Author:
dodge1
See Also:
  • Constructor Details

  • Method Details

    • computeMean

      public static double computeMean(NumericalList data)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toCSV

      public String toCSV()
    • getMedian

      public double getMedian()
      Returns:
      the median
    • getMax

      public double getMax()
    • getMin

      public double getMin()
    • getRMS

      public double getRMS()
    • getRange

      public double getRange()
    • getMinMax

      public MinMax getMinMax()
    • getMean

      public double getMean()
      Returns:
      the mean
    • getVariance

      public double getVariance()
      Returns:
      the variance
    • getSkewness

      public double getSkewness()
      Returns:
      the skewness
    • getKurtosis

      public double getKurtosis()
      Returns:
      the kurtosis
    • getStandardDeviation

      public double getStandardDeviation()
      Returns:
      the standardDeviation
    • quickMedian

      public static double quickMedian(NumericalList values)