mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-13 13:57:19 +01:00
16 lines
478 B
C++
16 lines
478 B
C++
|
|
#include "hypothesis_testing.h"
|
|
|
|
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
|
|
//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>();
|
|
}
|
|
|
|
void MLPPHypothesisTesting::_bind_methods() {
|
|
}
|