Method Summary |
|
public void | add(Date date, BoxAndWhiskerItem item) Adds an item to the dataset. |
public double | getFaroutCoefficient() Returns the value used as the farout coefficient. |
public BoxAndWhiskerItem | getItem(int series, int item) Return an item from within the dataset. |
public int | getItemCount(int series) Returns the number of items in the specified series.
Parameters: series - the index (zero-based) of the series. |
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). |
public Range | getRangeBounds(boolean includeInterval) Returns the range of the values in this dataset's range.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. |
public double | getRangeLowerBound(boolean includeInterval) Returns the minimum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. |
public double | getRangeUpperBound(boolean includeInterval) Returns the maximum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. |
public int | getSeriesCount() Returns the number of series in the dataset. |
public Comparable | getSeriesKey(int i) Returns the name of the series stored in this dataset.
Parameters: i - the index of the series. |
public Number | getX(int series, int item) Returns the x-value for one item in a series.
The value returned is a Long object generated from the underlying Date
object.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). |
public Date | getXDate(int series, int item) Returns the x-value for one item in a series, as a Date.
This method is provided for convenience only.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). |
public Number | getY(int series, int item) Returns the y-value for one item in a series.
This method (from the XYDataset interface) is mapped to the
getMaxNonOutlierValue() method.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). |
public void | setFaroutCoefficient(double faroutCoefficient) Sets the value used as the farouts coefficient. |
public void | setOutlierCoefficient(double outlierCoefficient) |