#ifndef MLPP_HYPOTHESIS_TESTING_OLD_H #define MLPP_HYPOTHESIS_TESTING_OLD_H // // HypothesisTesting.hpp // // Created by Marc Melikyan on 3/10/21. // #include "core/math/math_defs.h" #include "core/int_types.h" #include #include class MLPPHypothesisTestingOld { public: std::tuple chiSquareTest(std::vector observed, std::vector expected); protected: static void _bind_methods(); }; #endif /* HypothesisTesting_hpp */