| org.jfree.data.statistics.BoxAndWhiskerCategoryDataset
All known Subclasses: org.jfree.data.statistics.DefaultBoxAndWhiskerCategoryDataset,
BoxAndWhiskerCategoryDataset | public interface BoxAndWhiskerCategoryDataset extends CategoryDataset(Code) | | A category dataset that defines various medians, outliers and an average
value for each item.
|
Method Summary | |
public Number | getMaxOutlier(int row, int column) Returns the maximum outlier (non-farout) 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) for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. | 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 columnKey. | 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 average value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. | 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) 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) for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. | 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 columnKey. | public List | getOutliers(int row, int column) Returns a list of outlier values for an item. | public List | getOutliers(Comparable rowKey, Comparable columnKey) Returns a list of outlier values for an item. | public Number | getQ1Value(int row, int column) Returns the q1median value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). | public Number | getQ1Value(Comparable rowKey, Comparable columnKey) Returns the q1median value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. | public Number | getQ3Value(int row, int column) Returns the q3median value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). | public Number | getQ3Value(Comparable rowKey, Comparable columnKey) Returns the q3median value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. |
getMaxOutlier | public Number getMaxOutlier(int row, int column)(Code) | | Returns the maximum outlier (non-farout) for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The maximum outlier. |
getMaxOutlier | public Number getMaxOutlier(Comparable rowKey, Comparable columnKey)(Code) | | Returns the maximum outlier (non-farout) for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The maximum outlier. |
getMaxRegularValue | public Number getMaxRegularValue(int row, int column)(Code) | | Returns the maximum regular (non-outlier) value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The maximum regular value. |
getMaxRegularValue | public Number getMaxRegularValue(Comparable rowKey, Comparable columnKey)(Code) | | Returns the maximum regular (non-outlier) value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The maximum regular value. |
getMeanValue | public Number getMeanValue(int row, int column)(Code) | | Returns the mean value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The mean value. |
getMeanValue | public Number getMeanValue(Comparable rowKey, Comparable columnKey)(Code) | | Returns the average value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The average value. |
getMedianValue | public Number getMedianValue(int row, int column)(Code) | | Returns the median value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The median value. |
getMedianValue | public Number getMedianValue(Comparable rowKey, Comparable columnKey)(Code) | | Returns the median value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The median value. |
getMinOutlier | public Number getMinOutlier(int row, int column)(Code) | | Returns the minimum outlier (non-farout) for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The minimum outlier. |
getMinOutlier | public Number getMinOutlier(Comparable rowKey, Comparable columnKey)(Code) | | Returns the minimum outlier (non-farout) for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The minimum outlier. |
getMinRegularValue | public Number getMinRegularValue(int row, int column)(Code) | | Returns the minimum regular (non-outlier) value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The minimum regular value. |
getMinRegularValue | public Number getMinRegularValue(Comparable rowKey, Comparable columnKey)(Code) | | Returns the minimum regular (non-outlier) value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The minimum regular value. |
getOutliers | public List getOutliers(int row, int column)(Code) | | Returns a list of outlier values for an item. The list may be empty,
but should never be null .
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). A list of outliers for an item. |
getOutliers | public List getOutliers(Comparable rowKey, Comparable columnKey)(Code) | | Returns a list of outlier values for an item. The list may be empty,
but should never be null .
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. A list of outlier values for an item. |
getQ1Value | public Number getQ1Value(int row, int column)(Code) | | Returns the q1median value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The q1median value. |
getQ1Value | public Number getQ1Value(Comparable rowKey, Comparable columnKey)(Code) | | Returns the q1median value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The q1median value. |
getQ3Value | public Number getQ3Value(int row, int column)(Code) | | Returns the q3median value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The q3median value. |
getQ3Value | public Number getQ3Value(Comparable rowKey, Comparable columnKey)(Code) | | Returns the q3median value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The q3median value. |
|
|