|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BubbleDataset
Data access interface for a bubble chart. The shape of the data is each category is a row and each column is some numeric value of that category for that column. That shape is then repeated for each timestep.
Method Summary | |
---|---|
java.lang.Iterable<java.lang.String> |
categories()
Gets an iterable over the categories in this dataset. |
int |
getCategoryCount()
Gets the number of categories in this dataset. |
int |
getCategoryIndex(java.lang.String category)
Gets the index of the specified category. |
java.lang.String |
getFormattedTimeStep(int timestep)
Gets the formatted timestep (e.g. |
int |
getTimeStepCount()
Gets the number of timesteps. |
NumericRange |
getXRange()
Gets the range of x values over all timesteps and categories. |
double |
getXValue(int categoryIndex,
int timestep)
Gets the x value for the particular category at the specified timestep. |
NumericRange |
getYRange()
Gets the range of y values over all timesteps and categories. |
double |
getYValue(int categoryIndex,
int timestep)
Gets the y value for the particular category at the specified timestep. |
NumericRange |
getZRange()
Gets the range of z values over all timesteps and categories. |
double |
getZValue(int categoryIndex,
int timestep)
Gets the z value for the particular category at the specified timestep. |
Method Detail |
---|
java.lang.Iterable<java.lang.String> categories()
int getCategoryCount()
int getTimeStepCount()
java.lang.String getFormattedTimeStep(int timestep)
timestep
- the formatted timestep
int getCategoryIndex(java.lang.String category)
category
- the category whose index we want
double getXValue(int categoryIndex, int timestep)
categoryIndex
- the category indextimestep
- the timestep
double getYValue(int categoryIndex, int timestep)
categoryIndex
- the category indextimestep
- the timestep
double getZValue(int categoryIndex, int timestep)
categoryIndex
- the category indextimestep
- the timestep
NumericRange getXRange()
NumericRange getYRange()
NumericRange getZRange()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |