pmlpp/mlpp/hypothesis_testing/hypothesis_testing.cpp

21 lines
554 B
C++
Raw Normal View History

//
// HypothesisTesting.cpp
//
// Created by Marc Melikyan on 3/10/21.
//
2023-01-24 18:12:23 +01:00
#include "hypothesis_testing.h"
2023-01-27 13:01:16 +01:00
std::tuple<bool, real_t> MLPPHypothesisTesting::chiSquareTest(std::vector<real_t> observed, std::vector<real_t> expected) {
//real_t df = observed.size() - 1; // These are our degrees of freedom
2023-04-16 16:23:33 +02:00
//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<bool, real_t>();
2023-01-24 19:00:54 +01:00
}
void MLPPHypothesisTesting::_bind_methods() {
}