Class BoxPlotData


  • public class BoxPlotData
    extends java.lang.Object
    Box plot data information(Upper whisker, Upper quartile, Middle quartile, Lower quartile, Lower whisker)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected double lower
      Lower whisker
      protected double median
      Middle quartile
      protected double q1
      Lower quartile
      protected double q3
      Upper quartile
      protected double upper
      Upper whisker
    • Constructor Summary

      Constructors 
      Constructor Description
      BoxPlotData()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • upper

        protected double upper
        Upper whisker
      • q3

        protected double q3
        Upper quartile
      • median

        protected double median
        Middle quartile
      • q1

        protected double q1
        Lower quartile
      • lower

        protected double lower
        Lower whisker
    • Constructor Detail

      • BoxPlotData

        public BoxPlotData()