Examples of BoxAndWhiskers


Examples of org.radargun.stats.representation.BoxAndWhiskers

      errors++;
   }

   public BoxAndWhiskers getBoxAndWhiskers() {
      if (requests < 2) {
         return new BoxAndWhiskers(responseTimeMean, responseTimeMean, responseTimeMean, responseTimeMean, responseTimeMean);
      }
      double stddev =  Math.sqrt(responseTimeM2 / (double) (requests - 1));
      return new BoxAndWhiskers(responseTimeMean + INVERSE_NORMAL_95 * stddev, responseTimeMean + INVERSE_NORMAL_50 * stddev,
            responseTimeMean, responseTimeMean - INVERSE_NORMAL_50 * stddev, responseTimeMean - INVERSE_NORMAL_95 * stddev);
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.