Uses of Class
org.jaitools.numeric.Statistic

Packages that use Statistic
org.jaitools.numeric Classes providing a range of numeric functions including summary statistics, defining and comparing ranges (intervals), and compiling histogram data. 
 

Uses of Statistic in org.jaitools.numeric
 

Methods in org.jaitools.numeric that return Statistic
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.
 

Methods in org.jaitools.numeric that return types with arguments of type Statistic
 Map<Statistic,Double> Processor.get()
          Gets the value of all statistics calculated by this processor.
 Map<Statistic,Double> AbstractProcessor.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> SumProcessor.getSupported()
          Gets the Statistics supported by this processor.
 Collection<Statistic> Processor.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> ExactMedianProcessor.getSupported()
          Gets the Statistics supported by this processor.
 Collection<Statistic> ApproxMedianProcessor.getSupported()
          Gets the Statistics supported by this processor.
 

Methods in org.jaitools.numeric with parameters of type Statistic
 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.
 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 ExactMedianProcessor.get(Statistic stat)
          Gets the value of the statistic calculated by this processor.
 Double ApproxMedianProcessor.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-2015. All Rights Reserved.