public static enum HistogramPlot.YAggregate extends Enum<HistogramPlot.YAggregate>
Enum Constant and Description |
---|
COUNT
Plot the number of spots falling into each bin.
|
HILOMAXMIN
Plot a high/low bar for each bin with the maximum and minimum values.
|
HILOSTDEV
Plot a high/low bar for each bin with the mean +/- 1 standard deviation.
|
MAX
Plot the maximum of all y-values for spots falling into each bin.
|
MEAN
Plot the mean 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.
|
SUM
Plot the sum of all y-values for spots falling into each bin.
|
Modifier and Type | Method and Description |
---|---|
abstract float |
getMaxY(HistogramPlot.HistogramBin bin) |
float |
getMinY(HistogramPlot.HistogramBin bin) |
static HistogramPlot.YAggregate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistogramPlot.YAggregate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistogramPlot.YAggregate COUNT
public static final HistogramPlot.YAggregate SUM
public static final HistogramPlot.YAggregate MEAN
public static final HistogramPlot.YAggregate MAX
public static final HistogramPlot.YAggregate MIN
public static final HistogramPlot.YAggregate STDEV
public static final HistogramPlot.YAggregate HILOSTDEV
public static final HistogramPlot.YAggregate HILOMAXMIN
public static HistogramPlot.YAggregate[] values()
for (HistogramPlot.YAggregate c : HistogramPlot.YAggregate.values()) System.out.println(c);
public static HistogramPlot.YAggregate valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract float getMaxY(HistogramPlot.HistogramBin bin)
public float getMinY(HistogramPlot.HistogramBin bin)