Uses of Class
org.apache.commons.math3.stat.descriptive.SummaryStatistics
Packages that use SummaryStatistics
Package
Description
Random number and random data generators.
Generic univariate summary statistic objects.
Classes providing hypothesis testing.
-
Uses of SummaryStatistics in org.apache.commons.math3.random
Fields in org.apache.commons.math3.random declared as SummaryStatisticsModifier and TypeFieldDescriptionprivate SummaryStatistics
EmpiricalDistribution.sampleStats
Sample statisticsFields in org.apache.commons.math3.random with type parameters of type SummaryStatisticsModifier and TypeFieldDescriptionprivate final List
<SummaryStatistics> EmpiricalDistribution.binStats
List of SummaryStatistics objects characterizing the binsMethods in org.apache.commons.math3.random that return types with arguments of type SummaryStatisticsModifier and TypeMethodDescriptionEmpiricalDistribution.getBinStats()
Returns a List ofSummaryStatistics
instances containing statistics describing the values in each of the bins.Methods in org.apache.commons.math3.random with parameters of type SummaryStatisticsModifier and TypeMethodDescriptionprotected RealDistribution
EmpiricalDistribution.getKernel
(SummaryStatistics bStats) The within-bin smoothing kernel. -
Uses of SummaryStatistics in org.apache.commons.math3.stat.descriptive
Subclasses of SummaryStatistics in org.apache.commons.math3.stat.descriptiveModifier and TypeClassDescriptionprivate static class
A SummaryStatistics that also forwards all values added to it to a secondSummaryStatistics
for aggregation.class
Implementation ofSummaryStatistics
that is safe to use in a multithreaded environment.Fields in org.apache.commons.math3.stat.descriptive declared as SummaryStatisticsModifier and TypeFieldDescriptionprivate final SummaryStatistics
AggregateSummaryStatistics.AggregatingSummaryStatistics.aggregateStatistics
An additional SummaryStatistics into which values added to these statistics (and possibly others) are aggregatedprivate final SummaryStatistics
AggregateSummaryStatistics.statistics
The SummaryStatistics in which aggregate statistics are accumulated.private final SummaryStatistics
AggregateSummaryStatistics.statisticsPrototype
A SummaryStatistics serving as a prototype for creating SummaryStatistics contributing to this aggregateMethods in org.apache.commons.math3.stat.descriptive that return SummaryStatisticsModifier and TypeMethodDescriptionSummaryStatistics.copy()
Returns a copy of this SummaryStatistics instance with the same internal state.AggregateSummaryStatistics.createContributingStatistics()
Creates and returns aSummaryStatistics
whose data will be aggregated with those of thisAggregateSummaryStatistics
.Methods in org.apache.commons.math3.stat.descriptive with parameters of type SummaryStatisticsModifier and TypeMethodDescriptionstatic void
SummaryStatistics.copy
(SummaryStatistics source, SummaryStatistics dest) Copies source to dest.Constructors in org.apache.commons.math3.stat.descriptive with parameters of type SummaryStatisticsModifierConstructorDescriptionAggregateSummaryStatistics
(SummaryStatistics prototypeStatistics) Initializes a new AggregateSummaryStatistics with the specified statistics object as a prototype for contributing statistics and for the internal aggregate statistics.AggregateSummaryStatistics
(SummaryStatistics prototypeStatistics, SummaryStatistics initialStatistics) Initializes a new AggregateSummaryStatistics with the specified statistics object as a prototype for contributing statistics and for the internal aggregate statistics.(package private)
AggregatingSummaryStatistics
(SummaryStatistics aggregateStatistics) Initializes a new AggregatingSummaryStatistics with the specified aggregate statistics objectSummaryStatistics
(SummaryStatistics original) A copy constructor. -
Uses of SummaryStatistics in org.apache.commons.math3.stat.inference
Method parameters in org.apache.commons.math3.stat.inference with type arguments of type SummaryStatisticsModifier and TypeMethodDescriptiondouble
OneWayAnova.anovaPValue
(Collection<SummaryStatistics> categoryData, boolean allowOneElementData) Computes the ANOVA P-value for a collection ofSummaryStatistics
.private OneWayAnova.AnovaStats
OneWayAnova.anovaStats
(Collection<SummaryStatistics> categoryData, boolean allowOneElementData) This method actually does the calculations (except P-value).