pmlpp/mlpp/hypothesis_testing/hypothesis_testing_old.h

26 lines
476 B
C
Raw Normal View History

2023-02-13 17:29:02 +01:00
#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"
2023-02-13 17:29:02 +01:00
#include <tuple>
#include <vector>
class MLPPHypothesisTestingOld {
2023-02-13 17:29:02 +01:00
public:
std::tuple<bool, real_t> chiSquareTest(std::vector<real_t> observed, std::vector<real_t> expected);
protected:
static void _bind_methods();
};
#endif /* HypothesisTesting_hpp */