Class Metric


  • @Deprecated
    public class Metric
    extends Object
    Deprecated.
    This class holds all sorts of statistical information.
    Author:
    David Dixon-Peugh
    • Constructor Detail

      • Metric

        public Metric​(String name,
                      int count,
                      double total,
                      double low,
                      double high,
                      double mean,
                      double stddev)
        Deprecated.
        Creates a new metric with the given information.
        Parameters:
        name - the metric's name
        count - count of occurrences
        total - the total value of the metric
        low - the lowest value of the metric
        high - the highest value of the metric
        mean - the mean value
        stddev - the standard deviation
    • Method Detail

      • getMetricName

        public String getMetricName()
        Deprecated.
      • getLowValue

        public double getLowValue()
        Deprecated.
      • getHighValue

        public double getHighValue()
        Deprecated.
      • getAverage

        public double getAverage()
        Deprecated.
      • getStandardDeviation

        public double getStandardDeviation()
        Deprecated.
      • getCount

        public int getCount()
        Deprecated.
      • getTotal

        public double getTotal()
        Deprecated.