F-test (one-way ANOVA) statistical testing. More...
#include <sts_ftest.h>
Static Public Member Functions | |
| static StatsFtestResult | oneWay (const QVector< Eigen::MatrixXd > &groups) |
| static double | fCdf (double f, int df1, int df2) |
F-test (one-way ANOVA) statistical testing.
Provides F-test / one-way ANOVA implementation.
Definition at line 80 of file sts_ftest.h.
|
static |
Compute the CDF of the F-distribution using the regularized incomplete beta function.
| [in] | f | The F-value. |
| [in] | df1 | Numerator degrees of freedom. |
| [in] | df2 | Denominator degrees of freedom. |
Definition at line 115 of file sts_ftest.cpp.
|
static |
One-way ANOVA F-test.
| [in] | groups | Vector of matrices, each n_observations x n_variables. |
Definition at line 55 of file sts_ftest.cpp.