public interface BoxAndWhiskerXYDataset extends XYDataset
Example: JFreeChart uses this interface to obtain data for AIMS max-min-average-median plots.
Modifier and Type | Method and Description |
---|---|
double |
getFaroutCoefficient()
Returns the value used as the farout coefficient.
|
Number |
getMaxOutlier(int series,
int item)
Returns the maximum value which is not a farout, ie Q3 + (interquartile
range * farout coefficient).
|
Number |
getMaxRegularValue(int series,
int item)
Returns the max-value for the specified series and item.
|
Number |
getMeanValue(int series,
int item)
Returns the mean for the specified series and item.
|
Number |
getMedianValue(int series,
int item)
Returns the median-value for the specified series and item.
|
Number |
getMinOutlier(int series,
int item)
Returns the minimum value which is not a farout.
|
Number |
getMinRegularValue(int series,
int item)
Returns the min-value for the specified series and item.
|
double |
getOutlierCoefficient()
Returns the value used as the outlier coefficient.
|
List |
getOutliers(int series,
int item)
Returns a list of outliers for the specified series and item.
|
Number |
getQ1Value(int series,
int item)
Returns the Q1 median-value for the specified series and item.
|
Number |
getQ3Value(int series,
int item)
Returns the Q3 median-value for the specified series and item.
|
getDomainOrder, getItemCount, getX, getXValue, getY, getYValue
getSeriesCount, getSeriesKey, indexOf
addChangeListener, getGroup, removeChangeListener, setGroup
Number getMeanValue(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number getMedianValue(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number getQ1Value(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number getQ3Value(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number getMinRegularValue(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number getMaxRegularValue(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number getMinOutlier(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number
representing the maximum non-farout value.Number getMaxOutlier(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).Number
representing the maximum non-farout value.List getOutliers(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).null
).double getOutlierCoefficient()
double
representing the value used to calculate
outliersdouble getFaroutCoefficient()
double
representing the value used to calculate
faroutsJas4pp 1.5 © Java Analysis Studio for Particle Physics