| Package | Description |
|---|---|
| org.jaitools.numeric |
Classes providing a range of numeric functions including summary statistics,
defining and comparing ranges (intervals), and compiling histogram data.
|
| Modifier and Type | Method and Description |
|---|---|
static Statistic |
Statistic.get(String name)
Gets a Statistic constant by name (case-insensitive).
|
static Statistic |
Statistic.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statistic[] |
Statistic.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Map<Statistic,Double> |
AbstractProcessor.get()
Gets the value of all statistics calculated by this processor.
|
Map<Statistic,Double> |
Processor.get()
Gets the value of all statistics calculated by this processor.
|
Set<Statistic> |
StreamingSampleStats.getStatistics()
Gets the statistics that are currently set.
|
Map<Statistic,Double> |
StreamingSampleStats.getStatisticValues()
Gets the values of all statistics calculated by this sampler.
|
Collection<Statistic> |
ApproxMedianProcessor.getSupported()
Gets the
Statistics supported by this processor. |
Collection<Statistic> |
ExactMedianProcessor.getSupported()
Gets the
Statistics supported by this processor. |
Collection<Statistic> |
MeanVarianceProcessor.getSupported()
Gets the
Statistics supported by this processor. |
Collection<Statistic> |
ExtremaProcessor.getSupported()
Gets the
Statistics supported by this processor. |
Collection<Statistic> |
SumProcessor.getSupported()
Gets the
Statistics supported by this processor. |
Collection<Statistic> |
Processor.getSupported()
Gets the
Statistics supported by this processor. |
| Modifier and Type | Method and Description |
|---|---|
Double |
ApproxMedianProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor.
|
Double |
ExactMedianProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor.
|
Double |
MeanVarianceProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor.
|
Double |
ExtremaProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor.
|
Double |
SumProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor.
|
Double |
Processor.get(Statistic stat)
Gets the value of the statistic calculated by this processor.
|
Processor |
ProcessorFactory.getForStatistic(Statistic stat)
Return a new instance of a
Processor that claims to support
the given Statistic. |
long |
StreamingSampleStats.getNumAccepted(Statistic stat)
Gets the number of sample values that have been accepted for the
specified
Statistic. |
long |
StreamingSampleStats.getNumNaN(Statistic stat)
Gets the number of NaN values that have been offered.
|
long |
StreamingSampleStats.getNumNoData(Statistic stat)
Gets the number of NoData values (including NaN) that have been offered.
|
long |
StreamingSampleStats.getNumOffered(Statistic stat)
Gets the number of sample values that have been offered for the
specified
Statistic. |
Double |
StreamingSampleStats.getStatisticValue(Statistic stat)
Gets the current value of a running statistic.
|
boolean |
StreamingSampleStats.isSet(Statistic stat)
Tests whether the specified statistic is currently set.
|
void |
StreamingSampleStats.setStatistic(Statistic stat)
Adds a statistic to those calculated by this sampler.
|
void |
StreamingSampleStats.setStatistics(Statistic[] stats)
Adds the given statistics to those that will be calculated by this sampler.
|
Copyright © 2009–2018. All rights reserved.