pmlpp/mlpp/hypothesis_testing/hypothesis_testing.cpp

19 lines
456 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-24 19:20:18 +01:00
2023-01-25 00:25:18 +01:00
std::tuple<bool, double> MLPPHypothesisTesting::chiSquareTest(std::vector<double> observed, std::vector<double> expected) {
2023-01-24 19:00:54 +01:00
double df = observed.size() - 1; // These are our degrees of freedom
double sum = 0;
for (int i = 0; i < observed.size(); i++) {
sum += (observed[i] - expected[i]) * (observed[i] - expected[i]) / expected[i];
}
}