org.jfree.data.statistics
public class DefaultBoxAndWhiskerCategoryDataset extends AbstractDataset implements BoxAndWhiskerCategoryDataset, RangeInfo
Field Summary | |
---|---|
protected KeyedObjects2D | data Storage for the data. |
Constructor Summary | |
---|---|
DefaultBoxAndWhiskerCategoryDataset()
Creates a new dataset. |
Method Summary | |
---|---|
void | add(List list, Comparable rowKey, Comparable columnKey)
Adds a list of values relating to one box-and-whisker entity to the
table. |
void | add(BoxAndWhiskerItem item, Comparable rowKey, Comparable columnKey)
Adds a list of values relating to one Box and Whisker entity to the
table. |
boolean | equals(Object obj)
Tests this dataset for equality with an arbitrary object.
|
int | getColumnCount()
Returns the number of columns in the table.
|
int | getColumnIndex(Comparable key)
Returns the column index for a given key.
|
Comparable | getColumnKey(int column)
Returns a column key.
|
List | getColumnKeys()
Returns the column keys.
|
BoxAndWhiskerItem | getItem(int row, int column)
Return an item from within the dataset.
|
Number | getMaxOutlier(int row, int column)
Returns the maximum outlier (non farout) value for an item.
|
Number | getMaxOutlier(Comparable rowKey, Comparable columnKey)
Returns the maximum outlier (non farout) value for an item.
|
Number | getMaxRegularValue(int row, int column)
Returns the maximum regular (non outlier) value for an item.
|
Number | getMaxRegularValue(Comparable rowKey, Comparable columnKey)
Returns the maximum regular (non outlier) value for an item.
|
Number | getMeanValue(int row, int column)
Returns the mean value for an item.
|
Number | getMeanValue(Comparable rowKey, Comparable columnKey)
Returns the mean value for an item.
|
Number | getMedianValue(int row, int column)
Returns the median value for an item.
|
Number | getMedianValue(Comparable rowKey, Comparable columnKey)
Returns the median value for an item.
|
Number | getMinOutlier(int row, int column)
Returns the minimum outlier (non farout) value for an item.
|
Number | getMinOutlier(Comparable rowKey, Comparable columnKey)
Returns the minimum outlier (non farout) value for an item.
|
Number | getMinRegularValue(int row, int column)
Returns the minimum regular (non outlier) value for an item.
|
Number | getMinRegularValue(Comparable rowKey, Comparable columnKey)
Returns the minimum regular (non outlier) value for an item.
|
List | getOutliers(int row, int column)
Returns a list of outlier values for an item.
|
List | getOutliers(Comparable rowKey, Comparable columnKey)
Returns a list of outlier values for an item.
|
Number | getQ1Value(int row, int column)
Returns the first quartile value.
|
Number | getQ1Value(Comparable rowKey, Comparable columnKey)
Returns the first quartile value.
|
Number | getQ3Value(int row, int column)
Returns the third quartile value.
|
Number | getQ3Value(Comparable rowKey, Comparable columnKey)
Returns the third quartile value.
|
Range | getRangeBounds(boolean includeInterval)
Returns the range of the values in this dataset's range.
|
double | getRangeLowerBound(boolean includeInterval)
Returns the minimum y-value in the dataset.
|
double | getRangeUpperBound(boolean includeInterval)
Returns the maximum y-value in the dataset.
|
int | getRowCount()
Returns the number of rows in the table.
|
int | getRowIndex(Comparable key)
Returns the row index for a given key.
|
Comparable | getRowKey(int row)
Returns a row key.
|
List | getRowKeys()
Returns the row keys.
|
Number | getValue(int row, int column)
Returns the value for an item.
|
Number | getValue(Comparable rowKey, Comparable columnKey)
Returns the value for an item.
|
Parameters: list a collection of values from which the various medians will be calculated. rowKey the row key. columnKey the column key.
Parameters: item a box and whisker item (null
not permitted). rowKey the row key. columnKey the column key.
Parameters: obj the object to test against (null
permitted).
Returns: A boolean.
Returns: The column count.
Parameters: key the column key.
Returns: The column index.
Parameters: column the column index (zero-based).
Returns: The column key.
Returns: The keys.
Parameters: row the row index. column the column index.
Returns: The item.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The maximum outlier.
Parameters: rowKey the row key. columnKey the column key.
Returns: The maximum outlier.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The maximum regular value.
Parameters: rowKey the row key. columnKey the column key.
Returns: The maximum regular value.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The mean value.
Parameters: rowKey the row key. columnKey the column key.
Returns: The mean value.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The median value.
Parameters: rowKey the row key. columnKey the columnKey.
Returns: The median value.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The minimum outlier.
Parameters: rowKey the row key. columnKey the column key.
Returns: The minimum outlier.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The minimum regular value.
Parameters: rowKey the row key. columnKey the column key.
Returns: The minimum regular value.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: A list of outlier values.
Parameters: rowKey the row key. columnKey the column key.
Returns: A list of outlier values.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The first quartile value.
Parameters: rowKey the row key. columnKey the column key.
Returns: The first quartile value.
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The third quartile value.
Parameters: rowKey the row key. columnKey the column key.
Returns: The third quartile value.
Parameters: includeInterval a flag that determines whether or not the y-interval is taken into account.
Returns: The range.
Parameters: includeInterval a flag that determines whether or not the y-interval is taken into account.
Returns: The minimum value.
Parameters: includeInterval a flag that determines whether or not the y-interval is taken into account.
Returns: The maximum value.
Returns: The row count.
Parameters: key the row key.
Returns: The row index.
Parameters: row the row index (zero-based).
Returns: The row key.
Returns: The keys.
Parameters: row the row index. column the column index.
Returns: The value.
Parameters: rowKey the row key. columnKey the columnKey.
Returns: The value.