Uses of Class
org.hipparchus.stat.descriptive.StreamingStatistics
-
Packages that use StreamingStatistics Package Description org.hipparchus.stat.descriptive Generic univariate and multivariate summary statistic objects.org.hipparchus.stat.fitting Statistical methods for fitting distributions.org.hipparchus.stat.inference Classes providing hypothesis testing. -
-
Uses of StreamingStatistics in org.hipparchus.stat.descriptive
Methods in org.hipparchus.stat.descriptive that return StreamingStatistics Modifier and Type Method Description StreamingStatistics
StreamingStatistics.StreamingStatisticsBuilder. build()
Builds a StreamingStatistics instance with currently defined properties.StreamingStatistics
StreamingStatistics. copy()
Returns a copy of this StreamingStatistics instance with the same internal state.Methods in org.hipparchus.stat.descriptive with parameters of type StreamingStatistics Modifier and Type Method Description void
StreamingStatistics. aggregate(StreamingStatistics other)
Aggregates the provided instance into this instance. -
Uses of StreamingStatistics in org.hipparchus.stat.fitting
Methods in org.hipparchus.stat.fitting that return types with arguments of type StreamingStatistics Modifier and Type Method Description List<StreamingStatistics>
EmpiricalDistribution. getBinStats()
Returns a List ofStreamingStatistics
instances containing statistics describing the values in each of the bins.Methods in org.hipparchus.stat.fitting with parameters of type StreamingStatistics Modifier and Type Method Description protected RealDistribution
EmpiricalDistribution. getKernel(StreamingStatistics bStats)
The within-bin smoothing kernel. -
Uses of StreamingStatistics in org.hipparchus.stat.inference
Method parameters in org.hipparchus.stat.inference with type arguments of type StreamingStatistics Modifier and Type Method Description double
OneWayAnova. anovaPValue(Collection<StreamingStatistics> categoryData, boolean allowOneElementData)
Computes the ANOVA P-value for a collection ofStreamingStatistics
.
-