Uses of Class
org.apache.commons.math4.legacy.stat.descriptive.SummaryStatistics
-
Packages that use SummaryStatistics Package Description org.apache.commons.math4.legacy.distribution Implementations of common discrete and continuous distributions.org.apache.commons.math4.legacy.stat.descriptive Generic univariate summary statistic objects.org.apache.commons.math4.legacy.stat.inference Classes providing hypothesis testing. -
-
Uses of SummaryStatistics in org.apache.commons.math4.legacy.distribution
Methods in org.apache.commons.math4.legacy.distribution that return types with arguments of type SummaryStatistics Modifier and Type Method Description List<SummaryStatistics>
EmpiricalDistribution. getBinStats()
Returns a copy of theSummaryStatistics
instances containing statistics describing the values in each of the bins.Method parameters in org.apache.commons.math4.legacy.distribution with type arguments of type SummaryStatistics Modifier and Type Method Description static EmpiricalDistribution
EmpiricalDistribution. from(int binCount, double[] input, Function<SummaryStatistics,org.apache.commons.statistics.distribution.ContinuousDistribution> kernelFactory)
Factory that creates a new instance from the specified data. -
Uses of SummaryStatistics in org.apache.commons.math4.legacy.stat.descriptive
Subclasses of SummaryStatistics in org.apache.commons.math4.legacy.stat.descriptive Modifier and Type Class Description class
SynchronizedSummaryStatistics
Implementation ofSummaryStatistics
that is safe to use in a multithreaded environment.Methods in org.apache.commons.math4.legacy.stat.descriptive that return SummaryStatistics Modifier and Type Method Description SummaryStatistics
SummaryStatistics. copy()
Returns a copy of this SummaryStatistics instance with the same internal state.SummaryStatistics
AggregateSummaryStatistics. createContributingStatistics()
Creates and returns aSummaryStatistics
whose data will be aggregated with those of thisAggregateSummaryStatistics
.Methods in org.apache.commons.math4.legacy.stat.descriptive with parameters of type SummaryStatistics Modifier and Type Method Description static void
SummaryStatistics. copy(SummaryStatistics source, SummaryStatistics dest)
Copies source to dest.Constructors in org.apache.commons.math4.legacy.stat.descriptive with parameters of type SummaryStatistics Constructor Description AggregateSummaryStatistics(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.SummaryStatistics(SummaryStatistics original)
A copy constructor. -
Uses of SummaryStatistics in org.apache.commons.math4.legacy.stat.inference
Method parameters in org.apache.commons.math4.legacy.stat.inference with type arguments of type SummaryStatistics Modifier and Type Method Description double
OneWayAnova. anovaPValue(Collection<SummaryStatistics> categoryData, boolean allowOneElementData)
Computes the ANOVA P-value for a collection ofSummaryStatistics
.
-