|
statcpp
C++17 Header-Only Statistics Library
|
Structure to store statistical test results. More...
#include <parametric_tests.hpp>
Public Attributes | |
| double | statistic |
| Test statistic. | |
| double | p_value |
| p-value | |
| double | df |
| Degrees of freedom. | |
| alternative_hypothesis | alternative |
| Type of alternative hypothesis. | |
| double | df2 = std::numeric_limits<double>::quiet_NaN() |
| Second degrees of freedom (used by F-test) | |
Structure to store statistical test results.
Holds the test statistic, p-value, degrees of freedom, and alternative hypothesis information.
Definition at line 45 of file parametric_tests.hpp.
| alternative_hypothesis statcpp::test_result::alternative |
Type of alternative hypothesis.
Definition at line 49 of file parametric_tests.hpp.
| double statcpp::test_result::df |
Degrees of freedom.
Definition at line 48 of file parametric_tests.hpp.
| double statcpp::test_result::df2 = std::numeric_limits<double>::quiet_NaN() |
Second degrees of freedom (used by F-test)
Definition at line 50 of file parametric_tests.hpp.
| double statcpp::test_result::p_value |
p-value
Definition at line 47 of file parametric_tests.hpp.
| double statcpp::test_result::statistic |
Test statistic.
Definition at line 46 of file parametric_tests.hpp.