// // HypothesisTesting.cpp // // Created by Marc Melikyan on 3/10/21. // #include "hypothesis_testing.h" std::tuple MLPPHypothesisTesting::chiSquareTest(std::vector observed, std::vector expected) { //real_t df = observed.size() - 1; // These are our degrees of freedom real_t sum = 0; for (uint32_t i = 0; i < observed.size(); i++) { sum += (observed[i] - expected[i]) * (observed[i] - expected[i]) / expected[i]; } return std::tuple(); } void MLPPHypothesisTesting::_bind_methods() { }