Uses of Class
org.apache.commons.math.stat.descriptive.SummaryStatistics
-
Packages that use SummaryStatistics Package Description org.apache.commons.math.random Random number and random data generators.org.apache.commons.math.stat.descriptive Generic univariate summary statistic objects. -
-
Uses of SummaryStatistics in org.apache.commons.math.random
Methods in org.apache.commons.math.random that return types with arguments of type SummaryStatistics Modifier and Type Method Description java.util.List<SummaryStatistics>EmpiricalDistribution. getBinStats()Returns a list ofSummaryStatisticscontaining statistics describing the values in each of the bins.java.util.List<SummaryStatistics>EmpiricalDistributionImpl. getBinStats()Returns a List ofSummaryStatisticsinstances containing statistics describing the values in each of the bins. -
Uses of SummaryStatistics in org.apache.commons.math.stat.descriptive
Subclasses of SummaryStatistics in org.apache.commons.math.stat.descriptive Modifier and Type Class Description classSynchronizedSummaryStatisticsImplementation ofSummaryStatisticsthat is safe to use in a multithreaded environment.Methods in org.apache.commons.math.stat.descriptive that return SummaryStatistics Modifier and Type Method Description SummaryStatisticsSummaryStatistics. copy()Returns a copy of this SummaryStatistics instance with the same internal state.SummaryStatisticsAggregateSummaryStatistics. createContributingStatistics()Creates and returns aSummaryStatisticswhose data will be aggregated with those of thisAggregateSummaryStatistics.Methods in org.apache.commons.math.stat.descriptive with parameters of type SummaryStatistics Modifier and Type Method Description static voidSummaryStatistics. copy(SummaryStatistics source, SummaryStatistics dest)Copies source to dest.Method parameters in org.apache.commons.math.stat.descriptive with type arguments of type SummaryStatistics Modifier and Type Method Description static StatisticalSummaryValuesAggregateSummaryStatistics. aggregate(java.util.Collection<SummaryStatistics> statistics)Computes aggregate summary statistics.Constructors in org.apache.commons.math.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.
-