Method Summary |
|
public void | add(List list, Comparable rowKey, Comparable columnKey) Adds a list of values relating to one box-and-whisker entity to the
table. |
public void | add(BoxAndWhiskerItem item, Comparable rowKey, Comparable columnKey) Adds a list of values relating to one Box and Whisker entity to the
table. |
public boolean | equals(Object obj) Tests this dataset for equality with an arbitrary object.
Parameters: obj - the object to test against (null permitted). |
public int | getColumnCount() Returns the number of columns in the table. |
public int | getColumnIndex(Comparable key) Returns the column index for a given key.
Parameters: key - the column key. |
public Comparable | getColumnKey(int column) Returns a column key.
Parameters: column - the column index (zero-based). |
public List | getColumnKeys() Returns the column keys. |
public BoxAndWhiskerItem | getItem(int row, int column) Return an item from within the dataset.
Parameters: row - the row index. Parameters: column - the column index. |
public Number | getMaxOutlier(int row, int column) Returns the maximum outlier (non farout) value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getMaxOutlier(Comparable rowKey, Comparable columnKey) Returns the maximum outlier (non farout) value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getMaxRegularValue(int row, int column) Returns the maximum regular (non outlier) value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getMaxRegularValue(Comparable rowKey, Comparable columnKey) Returns the maximum regular (non outlier) value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getMeanValue(int row, int column) Returns the mean value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getMeanValue(Comparable rowKey, Comparable columnKey) Returns the mean value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getMedianValue(int row, int column) Returns the median value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getMedianValue(Comparable rowKey, Comparable columnKey) Returns the median value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. |
public Number | getMinOutlier(int row, int column) Returns the minimum outlier (non farout) value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getMinOutlier(Comparable rowKey, Comparable columnKey) Returns the minimum outlier (non farout) value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getMinRegularValue(int row, int column) Returns the minimum regular (non outlier) value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getMinRegularValue(Comparable rowKey, Comparable columnKey) Returns the minimum regular (non outlier) value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public List | getOutliers(int row, int column) Returns a list of outlier values for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public List | getOutliers(Comparable rowKey, Comparable columnKey) Returns a list of outlier values for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getQ1Value(int row, int column) Returns the first quartile value.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getQ1Value(Comparable rowKey, Comparable columnKey) Returns the first quartile value.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getQ3Value(int row, int column) Returns the third quartile value.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getQ3Value(Comparable rowKey, Comparable columnKey) Returns the third quartile value.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
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 | getRowCount() Returns the number of rows in the table. |
public int | getRowIndex(Comparable key) Returns the row index for a given key.
Parameters: key - the row key. |
public Comparable | getRowKey(int row) Returns a row key.
Parameters: row - the row index (zero-based). |
public List | getRowKeys() Returns the row keys. |
public Number | getValue(int row, int column) Returns the value for an item.
Parameters: row - the row index. Parameters: column - the column index. |
public Number | getValue(Comparable rowKey, Comparable columnKey) Returns the value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. |