Class StatGatherer

java.lang.Object
net.royalur.stats.StatGatherer

public class StatGatherer extends Object
Calculates running statistics (min, max, mean, variance, std‑dev) for large data streams.
  • Constructor Details

    • StatGatherer

      public StatGatherer()
  • Method Details

    • add

      public void add(double value)
    • max

      public double max()
    • min

      public double min()
    • mean

      public double mean()
    • variance

      public double variance()
    • stdDev

      public double stdDev()