| org.jfree.data.statistics.StatisticalCategoryDataset
All known Subclasses: org.jfree.data.statistics.DefaultStatisticalCategoryDataset,
StatisticalCategoryDataset | public interface StatisticalCategoryDataset extends CategoryDataset(Code) | | A category dataset that defines a median and standard deviation value for
each item.
|
Method Summary | |
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 columnKey. | public Number | getStdDevValue(int row, int column) Returns the standard deviation value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). | public Number | getStdDevValue(Comparable rowKey, Comparable columnKey) Returns the standard deviation value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. |
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 mean value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The mean value. |
getStdDevValue | public Number getStdDevValue(int row, int column)(Code) | | Returns the standard deviation value for an item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The standard deviation. |
getStdDevValue | public Number getStdDevValue(Comparable rowKey, Comparable columnKey)(Code) | | Returns the standard deviation value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. The standard deviation. |
|
|