Class StatisticalTests
java.lang.Object
org.episteme.core.mathematics.statistics.StatisticalTests
Advanced statistical methods and tests.
Hypothesis testing, correlation, regression.
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic RealchiSquaredTest(List<Real> observed, List<Real> expected) Chi-squared test for goodness of fit.static Realcovariance(List<Real> x, List<Real> y) Covariance between two datasets.static Real[]linearRegression(List<Real> x, List<Real> y) Linear regression: y = a + bx.static RealoneWayAnova(List<List<Real>> groups) One-Way Analysis of Variance (ANOVA).static RealpearsonCorrelation(List<Real> x, List<Real> y) Pearson correlation coefficient: measures linear relationship [-1, 1].static RealCoefficient of determination R²: proportion of variance explained.static RealstandardDeviation(List<Real> data) Standard deviation.static RealStudent's t-test for independent samples.
-
Constructor Details
-
StatisticalTests
public StatisticalTests()
-
-
Method Details
-
pearsonCorrelation
-
linearRegression
-
rSquared
-
tTest
-
chiSquaredTest
-
covariance
-
standardDeviation
-
oneWayAnova
-