Uses of Interface
org.hipparchus.stat.descriptive.StatisticalSummary
Packages that use StatisticalSummary
Package
Description
Generic univariate and multivariate summary statistic objects.
Statistical methods for fitting distributions.
Classes providing hypothesis testing.
-
Uses of StatisticalSummary in org.hipparchus.stat.descriptive
Classes in org.hipparchus.stat.descriptive that implement StatisticalSummaryModifier and TypeClassDescriptionclassMaintains a dataset of values of a single variable and computes descriptive statistics based on stored data.classValue object representing the results of a univariate statistical summary.classComputes summary statistics for a stream of data values added using theaddValuemethod.Methods in org.hipparchus.stat.descriptive that return StatisticalSummaryModifier and TypeMethodDescriptionstatic StatisticalSummaryStatisticalSummary.aggregate(Iterable<? extends StatisticalSummary> statistics) Computes aggregated statistical summaries.static StatisticalSummaryStatisticalSummary.aggregate(StatisticalSummary... statistics) Computes aggregated statistical summaries.StreamingStatistics.getSummary()Return aStatisticalSummaryValuesinstance reporting current statistics.Methods in org.hipparchus.stat.descriptive with parameters of type StatisticalSummaryModifier and TypeMethodDescriptionstatic StatisticalSummaryStatisticalSummary.aggregate(StatisticalSummary... statistics) Computes aggregated statistical summaries.Method parameters in org.hipparchus.stat.descriptive with type arguments of type StatisticalSummaryModifier and TypeMethodDescriptionstatic StatisticalSummaryStatisticalSummary.aggregate(Iterable<? extends StatisticalSummary> statistics) Computes aggregated statistical summaries. -
Uses of StatisticalSummary in org.hipparchus.stat.fitting
Methods in org.hipparchus.stat.fitting that return StatisticalSummaryModifier and TypeMethodDescriptionEmpiricalDistribution.getSampleStats()Returns aStatisticalSummarydescribing this distribution. -
Uses of StatisticalSummary in org.hipparchus.stat.inference
Methods in org.hipparchus.stat.inference with parameters of type StatisticalSummaryModifier and TypeMethodDescriptionstatic doubleInferenceTestUtils.homoscedasticT(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Computes a 2-sample t statistic, comparing the means of the datasets described by twoStatisticalSummaryinstances, under the assumption of equal subpopulation variances.doubleTTest.homoscedasticT(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Computes a 2-sample t statistic, comparing the means of the datasets described by twoStatisticalSummaryinstances, under the assumption of equal subpopulation variances.static doubleInferenceTestUtils.homoscedasticTTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances, under the hypothesis of equal subpopulation variances.doubleTTest.homoscedasticTTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances, under the hypothesis of equal subpopulation variances.static doubleInferenceTestUtils.t(double mu, StatisticalSummary sampleStats) static doubleInferenceTestUtils.t(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Computes a 2-sample t statistic, comparing the means of the datasets described by twoStatisticalSummaryinstances, without the assumption of equal subpopulation variances.doubleTTest.t(double mu, StatisticalSummary sampleStats) doubleTTest.t(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Computes a 2-sample t statistic, comparing the means of the datasets described by twoStatisticalSummaryinstances, without the assumption of equal subpopulation variances.static doubleInferenceTestUtils.tTest(double mu, StatisticalSummary sampleStats) Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the dataset described bysampleStatswith the constantmu.static booleanInferenceTestUtils.tTest(double mu, StatisticalSummary sampleStats, double alpha) Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which the dataset described bystatsis drawn equalsmu.static doubleInferenceTestUtils.tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances.static booleanInferenceTestUtils.tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha) Performs a two-sided t-test evaluating the null hypothesis thatsampleStats1andsampleStats2describe datasets drawn from populations with the same mean, with significance levelalpha.doubleTTest.tTest(double mu, StatisticalSummary sampleStats) Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the dataset described bysampleStatswith the constantmu.booleanTTest.tTest(double mu, StatisticalSummary sampleStats, double alpha) Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which the dataset described bystatsis drawn equalsmu.doubleTTest.tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2) Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances.booleanTTest.tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha) Performs a two-sided t-test evaluating the null hypothesis thatsampleStats1andsampleStats2describe datasets drawn from populations with the same mean, with significance levelalpha.