Save This Page
Home » jcommon-1.0.13 » org.jfree » data » statistics » [javadoc | source]
org.jfree.data.statistics
public interface: BoxAndWhiskerCategoryDataset [javadoc | source]

All Implemented Interfaces:
    CategoryDataset

All Known Implementing Classes:
    DefaultBoxAndWhiskerCategoryDataset

A category dataset that defines various medians, outliers and an average value for each item.
Method from org.jfree.data.statistics.BoxAndWhiskerCategoryDataset Summary:
getMaxOutlier,   getMaxOutlier,   getMaxRegularValue,   getMaxRegularValue,   getMeanValue,   getMeanValue,   getMedianValue,   getMedianValue,   getMinOutlier,   getMinOutlier,   getMinRegularValue,   getMinRegularValue,   getOutliers,   getOutliers,   getQ1Value,   getQ1Value,   getQ3Value,   getQ3Value
Method from org.jfree.data.statistics.BoxAndWhiskerCategoryDataset Detail:
 public Number getMaxOutlier(int row,
    int column)
    Returns the maximum outlier (non-farout) for an item.
 public Number getMaxOutlier(Comparable rowKey,
    Comparable columnKey)
    Returns the maximum outlier (non-farout) for an item.
 public Number getMaxRegularValue(int row,
    int column)
    Returns the maximum regular (non-outlier) value for an item.
 public Number getMaxRegularValue(Comparable rowKey,
    Comparable columnKey)
    Returns the maximum regular (non-outlier) value for an item.
 public Number getMeanValue(int row,
    int column)
    Returns the mean value for an item.
 public Number getMeanValue(Comparable rowKey,
    Comparable columnKey)
    Returns the average value for an item.
 public Number getMedianValue(int row,
    int column)
    Returns the median value for an item.
 public Number getMedianValue(Comparable rowKey,
    Comparable columnKey)
    Returns the median value for an item.
 public Number getMinOutlier(int row,
    int column)
    Returns the minimum outlier (non-farout) for an item.
 public Number getMinOutlier(Comparable rowKey,
    Comparable columnKey)
    Returns the minimum outlier (non-farout) for an item.
 public Number getMinRegularValue(int row,
    int column)
    Returns the minimum regular (non-outlier) value for an item.
 public Number getMinRegularValue(Comparable rowKey,
    Comparable columnKey)
    Returns the minimum regular (non-outlier) value for an item.
 public List getOutliers(int row,
    int column)
    Returns a list of outlier values for an item. The list may be empty, but should never be null.
 public List getOutliers(Comparable rowKey,
    Comparable columnKey)
    Returns a list of outlier values for an item. The list may be empty, but should never be null.
 public Number getQ1Value(int row,
    int column)
    Returns the q1median value for an item.
 public Number getQ1Value(Comparable rowKey,
    Comparable columnKey)
    Returns the q1median value for an item.
 public Number getQ3Value(int row,
    int column)
    Returns the q3median value for an item.
 public Number getQ3Value(Comparable rowKey,
    Comparable columnKey)
    Returns the q3median value for an item.