Uses of Record Class
cloud.opencode.base.math.stats.inference.TestResult
Packages that use TestResult
-
Uses of TestResult in cloud.opencode.base.math
Methods in cloud.opencode.base.math that return TestResultModifier and TypeMethodDescriptionstatic TestResultOpenMathLib.tTestOneSample(double[] data, double mu0) Performs a one-sample t-test.static TestResultOpenMathLib.tTestTwoSample(double[] x, double[] y) Performs Welch's two-sample t-test. -
Uses of TestResult in cloud.opencode.base.math.stats.inference
Methods in cloud.opencode.base.math.stats.inference that return TestResultModifier and TypeMethodDescriptionstatic TestResultChiSquareTest.goodnessOfFit(double[] observed, double[] expected) Performs a chi-squared goodness-of-fit test.static TestResultChiSquareTest.independence(double[][] contingencyTable) Performs a chi-squared test of independence on a contingency table.static TestResultTTest.oneSample(double[] data, double mu0) Performs a one-sample t-test (H0: population mean = mu0).static TestResultAnovaTest.oneWay(double[]... groups) Performs a one-way ANOVA F-test.static TestResultTTest.paired(double[] x, double[] y) Performs a paired t-test (H0: mean difference = 0).static TestResultTTest.twoSample(double[] x, double[] y) Performs an independent two-sample t-test using Welch's method (unequal variances).