|
statcpp
C++17 Header-Only Statistics Library
|
Little's MCAR test result. More...
#include <missing_data.hpp>
Public Attributes | |
| double | chi_square = 0.0 |
| Chi-square statistic. | |
| double | p_value = 1.0 |
| p-value | |
| std::size_t | df = 0 |
| Degrees of freedom. | |
| bool | is_mcar = true |
| Whether MCAR is concluded (p > 0.05) | |
| std::string | interpretation |
| Interpretation. | |
Little's MCAR test result.
Structure storing results of Little's MCAR test. Contains chi-square statistic, p-value, degrees of freedom, and interpretation.
Definition at line 59 of file missing_data.hpp.
| double statcpp::mcar_test_result::chi_square = 0.0 |
Chi-square statistic.
Definition at line 60 of file missing_data.hpp.
| std::size_t statcpp::mcar_test_result::df = 0 |
Degrees of freedom.
Definition at line 62 of file missing_data.hpp.
| std::string statcpp::mcar_test_result::interpretation |
Interpretation.
Definition at line 64 of file missing_data.hpp.
| bool statcpp::mcar_test_result::is_mcar = true |
Whether MCAR is concluded (p > 0.05)
Definition at line 63 of file missing_data.hpp.
| double statcpp::mcar_test_result::p_value = 1.0 |
p-value
Definition at line 61 of file missing_data.hpp.