|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface BoxAndWhiskerXYDataset
An interface that defines data in the form of (x, max, min, average, median) tuples.
Example: JFreeChart uses this interface to obtain data for AIMS max-min-average-median plots.
| Method Summary | |
|---|---|
double |
getFaroutCoefficient()
Returns the value used as the farout coefficient. |
java.lang.Number |
getMaxOutlier(int series,
int item)
Returns the maximum value which is not a farout, ie Q3 + (interquartile range * farout coefficient). |
java.lang.Number |
getMaxRegularValue(int series,
int item)
Returns the max-value for the specified series and item. |
java.lang.Number |
getMeanValue(int series,
int item)
Returns the mean for the specified series and item. |
java.lang.Number |
getMedianValue(int series,
int item)
Returns the median-value for the specified series and item. |
java.lang.Number |
getMinOutlier(int series,
int item)
Returns the minimum value which is not a farout. |
java.lang.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. |
java.util.List |
getOutliers(int series,
int item)
Returns an array of outliers for the specified series and item. |
java.lang.Number |
getQ1Value(int series,
int item)
Returns the Q1 median-value for the specified series and item. |
java.lang.Number |
getQ3Value(int series,
int item)
Returns the Q3 median-value for the specified series and item. |
| Methods inherited from interface org.jfree.data.xy.XYDataset |
|---|
getDomainOrder, getItemCount, getX, getXValue, getY, getYValue |
| Methods inherited from interface org.jfree.data.general.SeriesDataset |
|---|
getSeriesCount, getSeriesKey, indexOf |
| Methods inherited from interface org.jfree.data.general.Dataset |
|---|
addChangeListener, getGroup, removeChangeListener, setGroup |
| Method Detail |
|---|
java.lang.Number getMeanValue(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
java.lang.Number getMedianValue(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
java.lang.Number getQ1Value(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
java.lang.Number getQ3Value(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
java.lang.Number getMinRegularValue(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
java.lang.Number getMaxRegularValue(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
java.lang.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.
java.lang.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.
java.util.List getOutliers(int series,
int item)
series - the series (zero-based index).item - the item (zero-based index).
double getOutlierCoefficient()
double representing the value used to calculate
outliersdouble getFaroutCoefficient()
double representing the value used to calculate
farouts
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||