public class BoxAndWhiskerItem extends Object implements Serializable
| Constructor and Description |
|---|
BoxAndWhiskerItem(double mean,
double median,
double q1,
double q3,
double minRegularValue,
double maxRegularValue,
double minOutlier,
double maxOutlier,
List outliers)
Creates a new box-and-whisker item.
|
BoxAndWhiskerItem(Number mean,
Number median,
Number q1,
Number q3,
Number minRegularValue,
Number maxRegularValue,
Number minOutlier,
Number maxOutlier,
List outliers)
Creates a new box-and-whisker item.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Tests this object for equality with an arbitrary object.
|
Number |
getMaxOutlier()
Returns the maximum outlier.
|
Number |
getMaxRegularValue()
Returns the maximum regular value.
|
Number |
getMean()
Returns the mean.
|
Number |
getMedian()
Returns the median.
|
Number |
getMinOutlier()
Returns the minimum outlier.
|
Number |
getMinRegularValue()
Returns the minimum regular value.
|
List |
getOutliers()
Returns a list of outliers.
|
Number |
getQ1()
Returns the first quartile.
|
Number |
getQ3()
Returns the third quartile.
|
String |
toString()
Returns a string representation of this instance, primarily for
debugging purposes.
|
public BoxAndWhiskerItem(Number mean, Number median, Number q1, Number q3, Number minRegularValue, Number maxRegularValue, Number minOutlier, Number maxOutlier, List outliers)
mean - the mean (null permitted).median - the median (null permitted).q1 - the first quartile (null permitted).q3 - the third quartile (null permitted).minRegularValue - the minimum regular value (null
permitted).maxRegularValue - the maximum regular value (null
permitted).minOutlier - the minimum outlier (null permitted).maxOutlier - the maximum outlier (null permitted).outliers - the outliers (null permitted).public BoxAndWhiskerItem(double mean, double median, double q1, double q3, double minRegularValue, double maxRegularValue, double minOutlier, double maxOutlier, List outliers)
mean - the mean.median - the medianq1 - the first quartile.q3 - the third quartile.minRegularValue - the minimum regular value.maxRegularValue - the maximum regular value.minOutlier - the minimum outlier value.maxOutlier - the maximum outlier value.outliers - a list of the outliers.public Number getQ1()
null).public Number getQ3()
null).public Number getMinRegularValue()
null).public Number getMaxRegularValue()
null).public Number getMinOutlier()
null).public Number getMaxOutlier()
null).public List getOutliers()
null).public String toString()
Copyright © 2000-2009 by Object Refinery Limited. All Rights Reserved.