Module org.jfree.chart
Package org.jfree.data.statistics
Interface StatisticalCategoryDataset<R extends Comparable<R>,C extends Comparable<C>>
-
- All Superinterfaces:
CategoryDataset<R,C>,Dataset,KeyedValues2D<R,C>,Values2D
- All Known Implementing Classes:
DefaultStatisticalCategoryDataset
public interface StatisticalCategoryDataset<R extends Comparable<R>,C extends Comparable<C>> extends CategoryDataset<R,C>
A category dataset that defines a mean and standard deviation value for each item.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumbergetMeanValue(int row, int column)Returns the mean value for an item.NumbergetMeanValue(R rowKey, C columnKey)Returns the mean value for an item.NumbergetStdDevValue(int row, int column)Returns the standard deviation value for an item.NumbergetStdDevValue(R rowKey, C columnKey)Returns the standard deviation value for an item.-
Methods inherited from interface org.jfree.data.general.Dataset
addChangeListener, removeChangeListener
-
Methods inherited from interface org.jfree.data.KeyedValues2D
getColumnIndex, getColumnKey, getColumnKeys, getRowIndex, getRowKey, getRowKeys, getValue
-
Methods inherited from interface org.jfree.data.Values2D
getColumnCount, getRowCount, getValue
-
-
-
-
Method Detail
-
getMeanValue
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 (possibly
null).
-
getMeanValue
Number getMeanValue(R rowKey, C columnKey)
Returns the mean value for an item.- Parameters:
rowKey- the row key.columnKey- the columnKey.- Returns:
- The mean value (possibly
null).
-
getStdDevValue
Number getStdDevValue(int row, int column)
Returns the standard deviation value for an item.- Parameters:
row- the row index (zero-based).column- the column index (zero-based).- Returns:
- The standard deviation (possibly
null).
-
getStdDevValue
Number getStdDevValue(R rowKey, C columnKey)
Returns the standard deviation value for an item.- Parameters:
rowKey- the row key.columnKey- the columnKey.- Returns:
- The standard deviation (possibly
null).
-
-