Method Summary |
|
public void | add(double mean, double standardDeviation, Comparable rowKey, Comparable columnKey) Adds a mean and standard deviation to the table. |
public void | add(Number mean, Number standardDeviation, Comparable rowKey, Comparable columnKey) Adds a mean and standard deviation to the table. |
public boolean | equals(Object obj) Tests this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). |
public int | getColumnCount() Returns the number of columns in the table. |
public int | getColumnIndex(Comparable key) Returns the column index for a given key.
Parameters: key - the column key. |
public Comparable | getColumnKey(int column) Returns a column key.
Parameters: column - the column index (zero-based). |
public List | getColumnKeys() Returns the column keys. |
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 Range | getRangeBounds(boolean includeInterval) Returns the range of the values in this dataset's range.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. |
public double | getRangeLowerBound(boolean includeInterval) Returns the minimum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account (ignored forthis dataset). |
public double | getRangeUpperBound(boolean includeInterval) Returns the maximum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account (ignored forthis dataset). |
public int | getRowCount() Returns the number of rows in the table. |
public int | getRowIndex(Comparable key) Returns the row index for a given key.
Parameters: key - the row key. |
public Comparable | getRowKey(int row) Returns a row key.
Parameters: row - the row index (zero-based). |
public List | getRowKeys() Returns the row keys. |
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. |
public Number | getValue(int row, int column) Returns the value for an item (for this dataset, the mean value is
returned).
Parameters: row - the row index. Parameters: column - the column index. |
public Number | getValue(Comparable rowKey, Comparable columnKey) Returns the value for an item (for this dataset, the mean value is
returned).
Parameters: rowKey - the row key. Parameters: columnKey - the columnKey. |