pmlpp/mlpp/hypothesis_testing/hypothesis_testing.h

24 lines
403 B
C
Raw Normal View History

2023-01-24 18:57:18 +01:00
#ifndef MLPP_HYPOTHESIS_TESTING_H
#define MLPP_HYPOTHESIS_TESTING_H
//
// HypothesisTesting.hpp
//
// Created by Marc Melikyan on 3/10/21.
//
#include <tuple>
2023-01-24 19:00:54 +01:00
#include <vector>
namespace MLPP {
class HypothesisTesting {
public:
std::tuple<bool, double> chiSquareTest(std::vector<double> observed, std::vector<double> expected);
2023-01-24 19:00:54 +01:00
private:
};
} //namespace MLPP
#endif /* HypothesisTesting_hpp */