Package | Description |
---|---|
edu.uah.math.devices | |
edu.uah.math.distributions |
Modifier and Type | Method and Description |
---|---|
Domain |
DistributionGraph.getDomain()
This method returns the domain for the horizontal axis of the graph.
|
Domain |
Timeline.getDomain()
This method returns the domain.
|
Domain |
ScatterPlot.getXDomain()
This method returns the domain of the x variable.
|
Domain |
ScatterPlot.getYDomain()
This method returns the domain of the y variable.
|
Modifier and Type | Method and Description |
---|---|
void |
Graph.drawAxis(java.awt.Graphics g,
Domain d,
double c,
int o)
This method draws an axis corresponding to a sepcified domain at specified poisiton
relative to the other variable, with a specified orientation.
|
void |
ScatterPlot.setDomain(Domain d)
This method sets the common domain for x and y.
|
void |
DistributionGraph.setDomain(Domain d)
This method sets the domain for the horizontal axis.
|
void |
InteractiveHistogram.setDomain(Domain d)
This method sets the domain.
|
void |
Timeline.setDomain(Domain d)
This method sets the domain.
|
void |
ScatterPlot.setDomains(Domain d1,
Domain d2)
This method sets the domains.
|
void |
ScatterPlot.setXDomain(Domain d)
This method sets the domain of the x variable.
|
void |
ScatterPlot.setYDomain(Domain d)
This method sets the domain of the y variable.
|
Constructor and Description |
---|
BivariateScatterPlot(Domain d)
This special constructor creates a new BivariateScatterPlot with
specified common domain and default names.
|
BivariateScatterPlot(Domain d1,
Domain d2)
This special constructor creates a new BivariateScatterPlot with
specified domains and default names.
|
BivariateScatterPlot(Domain d1,
java.lang.String n1,
Domain d2,
java.lang.String n2)
This general constructor creates a new BivariateScatterPlot with
specified domains and names.
|
BivariateScatterPlot(Domain d,
java.lang.String n1,
java.lang.String n2)
This special constructor creates a new BivariateScatterPlot with
common domain and specified names.
|
InteractiveHistogram(Domain d)
This general constructor creates a new interactive histogram corresponding to a specified
domain.
|
ScatterPlot(Domain d)
This special constructor creates a new scatterplot with a specified common
domain and default names "x" and "y".
|
ScatterPlot(Domain d1,
Domain d2)
This special constructor creates a new scatterplot with specified domains and
default names "x" and "y".
|
ScatterPlot(Domain d1,
java.lang.String n1,
Domain d2,
java.lang.String n2)
This general constructor creates a new scatterplot with specified domains
and names.
|
ScatterPlot(Domain d,
java.lang.String n1,
java.lang.String n2)
This special constructor creates a new scatterplot with a specified common x and y
domain and specified names.
|
Timeline(Domain d)
This special constructor creates a new timeline corresponding to a specified
domain and the default name "x".
|
Timeline(Domain d,
java.lang.String n)
This general constructor creates a new timeline corresponding to a specified
domain and a specified name for the underlying variable.
|
UserScatterPlot(Domain d)
This special constructor creates a new user scatterplot with a specified common
domain for the variables and with default names "x" and "y".
|
UserScatterPlot(Domain d1,
Domain d2)
This special constructor creates a new user scatterplot with spcified domains
and default names "x" and "y".
|
UserScatterPlot(Domain d1,
java.lang.String n1,
Domain d2,
java.lang.String n2)
This general constructor creates a new scatterplot correpsonding to specified
domains and names.
|
UserScatterPlot(Domain d,
java.lang.String n1,
java.lang.String n2)
This special constructur creates a new user scatterplot with common domain
for the variables, and with specified names.
|
Modifier and Type | Method and Description |
---|---|
Domain |
Distribution.getDomain()
This method returns the domain of the distribution.
|
Domain |
IntervalData.getDomain()
This method returns the domain.
|
Modifier and Type | Method and Description |
---|---|
protected void |
Distribution.setDomain(Domain d)
This method sets the domain of the distribution for purposes of data collection
and for default computations.
|
void |
IntervalData.setDomain(Domain d)
This method sets the domain of the data set.
|
Constructor and Description |
---|
IntervalData(Domain d)
This special constructor creates a new data distribution with a specified
domain and the default name "X".
|
IntervalData(Domain d,
java.lang.String n)
This general constructor creates a new data distribution with a specified domain
and a specified name.
|