| org.jfree.data.statistics.BoxAndWhiskerXYDataset
All known Subclasses: org.jfree.data.statistics.DefaultBoxAndWhiskerXYDataset,
BoxAndWhiskerXYDataset | public interface BoxAndWhiskerXYDataset extends XYDataset(Code) | | 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 | |
public double | getFaroutCoefficient() Returns the value used as the farout coefficient. | public Number | getMaxOutlier(int series, int item) Returns the maximum value which is not a farout, ie Q3 + (interquartile
range * farout coefficient).
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getMaxRegularValue(int series, int item) Returns the max-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getMeanValue(int series, int item) Returns the mean for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getMedianValue(int series, int item) Returns the median-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getMinOutlier(int series, int item) Returns the minimum value which is not a farout.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getMinRegularValue(int series, int item) Returns the min-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public double | getOutlierCoefficient() Returns the value used as the outlier coefficient. | public List | getOutliers(int series, int item) Returns an array of outliers for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getQ1Value(int series, int item) Returns the Q1 median-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getQ3Value(int series, int item) Returns the Q3 median-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). |
getFaroutCoefficient | public double getFaroutCoefficient()(Code) | | Returns the value used as the farout coefficient. The farout coefficient
allows the calculation of which values will be off the graph.
A double representing the value used to calculate farouts |
getMaxOutlier | public Number getMaxOutlier(int series, int item)(Code) | | Returns the maximum value which is not a farout, ie Q3 + (interquartile
range * farout coefficient).
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). A Number representing the maximum non-farout value. |
getMaxRegularValue | public Number getMaxRegularValue(int series, int item)(Code) | | Returns the max-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The max-value for the specified series and item. |
getMeanValue | public Number getMeanValue(int series, int item)(Code) | | Returns the mean for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The mean for the specified series and item. |
getMedianValue | public Number getMedianValue(int series, int item)(Code) | | Returns the median-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The median-value for the specified series and item. |
getMinOutlier | public Number getMinOutlier(int series, int item)(Code) | | Returns the minimum value which is not a farout.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). A Number representing the maximum non-farout value. |
getMinRegularValue | public Number getMinRegularValue(int series, int item)(Code) | | Returns the min-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The min-value for the specified series and item. |
getOutlierCoefficient | public double getOutlierCoefficient()(Code) | | Returns the value used as the outlier coefficient. The outlier
coefficient gives an indication of the degree of certainty in an
unskewed distribution. Increasing the coefficient increases the number
of values included. Currently only used to ensure farout coefficient
is greater than the outlier coefficient
A double representing the value used to calculate outliers |
getOutliers | public List getOutliers(int series, int item)(Code) | | Returns an array of outliers for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The array of outliers for the specified series and item. |
getQ1Value | public Number getQ1Value(int series, int item)(Code) | | Returns the Q1 median-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The Q1 median-value for the specified series and item. |
getQ3Value | public Number getQ3Value(int series, int item)(Code) | | Returns the Q3 median-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The Q3 median-value for the specified series and item. |
|
|