Uses of Class
org.apache.commons.math3.stat.descriptive.SummaryStatistics
-
Packages that use SummaryStatistics Package Description org.apache.commons.math3.random Random number and random data generators.org.apache.commons.math3.stat.descriptive Generic univariate summary statistic objects.org.apache.commons.math3.stat.inference Classes providing hypothesis testing. -
-
Uses of SummaryStatistics in org.apache.commons.math3.random
Fields in org.apache.commons.math3.random declared as SummaryStatistics Modifier and Type Field Description private SummaryStatisticsEmpiricalDistribution. sampleStatsSample statisticsFields in org.apache.commons.math3.random with type parameters of type SummaryStatistics Modifier and Type Field Description private java.util.List<SummaryStatistics>EmpiricalDistribution. binStatsList of SummaryStatistics objects characterizing the binsMethods in org.apache.commons.math3.random that return types with arguments of type SummaryStatistics Modifier and Type Method Description java.util.List<SummaryStatistics>EmpiricalDistribution. getBinStats()Returns a List ofSummaryStatisticsinstances containing statistics describing the values in each of the bins.Methods in org.apache.commons.math3.random with parameters of type SummaryStatistics Modifier and Type Method Description protected RealDistributionEmpiricalDistribution. 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.descriptive Modifier and Type Class Description private static classAggregateSummaryStatistics.AggregatingSummaryStatisticsA SummaryStatistics that also forwards all values added to it to a secondSummaryStatisticsfor aggregation.classSynchronizedSummaryStatisticsImplementation ofSummaryStatisticsthat is safe to use in a multithreaded environment.Fields in org.apache.commons.math3.stat.descriptive declared as SummaryStatistics Modifier and Type Field Description private SummaryStatisticsAggregateSummaryStatistics.AggregatingSummaryStatistics. aggregateStatisticsAn additional SummaryStatistics into which values added to these statistics (and possibly others) are aggregatedprivate SummaryStatisticsAggregateSummaryStatistics. statisticsThe SummaryStatistics in which aggregate statistics are accumulated.private SummaryStatisticsAggregateSummaryStatistics. statisticsPrototypeA SummaryStatistics serving as a prototype for creating SummaryStatistics contributing to this aggregateMethods in org.apache.commons.math3.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.math3.stat.descriptive with parameters of type SummaryStatistics Modifier and Type Method Description static voidSummaryStatistics. copy(SummaryStatistics source, SummaryStatistics dest)Copies source to dest.Constructors in org.apache.commons.math3.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.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 SummaryStatistics Modifier and Type Method Description doubleOneWayAnova. anovaPValue(java.util.Collection<SummaryStatistics> categoryData, boolean allowOneElementData)Computes the ANOVA P-value for a collection ofSummaryStatistics.private OneWayAnova.AnovaStatsOneWayAnova. anovaStats(java.util.Collection<SummaryStatistics> categoryData, boolean allowOneElementData)This method actually does the calculations (except P-value).
-