Package net.sf.basedb.util.plot
Enum Class HistogramPlot.YAggregate
- All Implemented Interfaces:
Serializable
,Comparable<HistogramPlot.YAggregate>
,Constable
- Enclosing class:
- HistogramPlot
Defines what to to plot on the y axis in a histogram plot.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPlot the number of spots falling into each bin.Plot a high/low bar for each bin with the maximum and minimum values.Plot a high/low bar for each bin with the mean +/- 1 standard deviation.Plot the maximum of all y-values for spots falling into each bin.Plot the mean of all y-values for spots falling into each bin.Plot the minimum of all y-values for spots falling into each bin.Plot the standard deviation of all y-values for spots falling into each bin.Plot the sum of all y-values for spots falling into each bin. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract float
float
static HistogramPlot.YAggregate
Returns the enum constant of this class with the specified name.static HistogramPlot.YAggregate[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COUNT
Plot the number of spots falling into each bin. -
SUM
Plot the sum of all y-values for spots falling into each bin. -
MEAN
Plot the mean of all y-values for spots falling into each bin. -
MAX
Plot the maximum of all y-values for spots falling into each bin. -
MIN
Plot the minimum of all y-values for spots falling into each bin. -
STDEV
Plot the standard deviation of all y-values for spots falling into each bin. -
HILOSTDEV
Plot a high/low bar for each bin with the mean +/- 1 standard deviation. -
HILOMAXMIN
Plot a high/low bar for each bin with the maximum and minimum values.
-
-
Constructor Details
-
YAggregate
private YAggregate()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getMaxY
-
getMinY
-