public interface

BoxAndWhiskerCategoryDataset

implements CategoryDataset
org.jfree.data.statistics.BoxAndWhiskerCategoryDataset
Known Indirect Subclasses

Class Overview

A category dataset that defines various medians, outliers and an average value for each item.

Summary

Public Methods
abstract Number getMaxOutlier(Comparable rowKey, Comparable columnKey)
Returns the maximum outlier (non-farout) for an item.
abstract Number getMaxOutlier(int row, int column)
Returns the maximum outlier (non-farout) for an item.
abstract Number getMaxRegularValue(Comparable rowKey, Comparable columnKey)
Returns the maximum regular (non-outlier) value for an item.
abstract Number getMaxRegularValue(int row, int column)
Returns the maximum regular (non-outlier) value for an item.
abstract Number getMeanValue(int row, int column)
Returns the mean value for an item.
abstract Number getMeanValue(Comparable rowKey, Comparable columnKey)
Returns the average value for an item.
abstract Number getMedianValue(int row, int column)
Returns the median value for an item.
abstract Number getMedianValue(Comparable rowKey, Comparable columnKey)
Returns the median value for an item.
abstract Number getMinOutlier(int row, int column)
Returns the minimum outlier (non-farout) for an item.
abstract Number getMinOutlier(Comparable rowKey, Comparable columnKey)
Returns the minimum outlier (non-farout) for an item.
abstract Number getMinRegularValue(int row, int column)
Returns the minimum regular (non-outlier) value for an item.
abstract Number getMinRegularValue(Comparable rowKey, Comparable columnKey)
Returns the minimum regular (non-outlier) value for an item.
abstract List getOutliers(Comparable rowKey, Comparable columnKey)
Returns a list of outlier values for an item.
abstract List getOutliers(int row, int column)
Returns a list of outlier values for an item.
abstract Number getQ1Value(Comparable rowKey, Comparable columnKey)
Returns the q1median value for an item.
abstract Number getQ1Value(int row, int column)
Returns the q1median value for an item.
abstract Number getQ3Value(Comparable rowKey, Comparable columnKey)
Returns the q3median value for an item.
abstract Number getQ3Value(int row, int column)
Returns the q3median value for an item.
[Expand]
Inherited Methods
From interface org.jfree.data.KeyedValues2D
From interface org.jfree.data.Values2D
From interface org.jfree.data.general.Dataset

Public Methods

public abstract Number getMaxOutlier (Comparable rowKey, Comparable columnKey)

Returns the maximum outlier (non-farout) for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The maximum outlier.

public abstract Number getMaxOutlier (int row, int column)

Returns the maximum outlier (non-farout) for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The maximum outlier.

public abstract Number getMaxRegularValue (Comparable rowKey, Comparable columnKey)

Returns the maximum regular (non-outlier) value for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The maximum regular value.

public abstract Number getMaxRegularValue (int row, int column)

Returns the maximum regular (non-outlier) value for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The maximum regular value.

public abstract Number getMeanValue (int row, int column)

Returns the mean value for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The mean value.

public abstract Number getMeanValue (Comparable rowKey, Comparable columnKey)

Returns the average value for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The average value.

public abstract Number getMedianValue (int row, int column)

Returns the median value for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The median value.

public abstract Number getMedianValue (Comparable rowKey, Comparable columnKey)

Returns the median value for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The median value.

public abstract Number getMinOutlier (int row, int column)

Returns the minimum outlier (non-farout) for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The minimum outlier.

public abstract Number getMinOutlier (Comparable rowKey, Comparable columnKey)

Returns the minimum outlier (non-farout) for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The minimum outlier.

public abstract Number getMinRegularValue (int row, int column)

Returns the minimum regular (non-outlier) value for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The minimum regular value.

public abstract Number getMinRegularValue (Comparable rowKey, Comparable columnKey)

Returns the minimum regular (non-outlier) value for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The minimum regular value.

public abstract 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.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • A list of outlier values for an item.

public abstract 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.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • A list of outliers for an item.

public abstract Number getQ1Value (Comparable rowKey, Comparable columnKey)

Returns the q1median value for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The q1median value.

public abstract Number getQ1Value (int row, int column)

Returns the q1median value for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The q1median value.

public abstract Number getQ3Value (Comparable rowKey, Comparable columnKey)

Returns the q3median value for an item.

Parameters
rowKey the row key.
columnKey the columnKey.
Returns
  • The q3median value.

public abstract Number getQ3Value (int row, int column)

Returns the q3median value for an item.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The q3median value.