mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-13 13:57:19 +01:00
24 lines
373 B
C++
24 lines
373 B
C++
|
|
#ifndef MLPP_HYPOTHESIS_TESTING_H
|
|
#define MLPP_HYPOTHESIS_TESTING_H
|
|
|
|
//
|
|
// HypothesisTesting.hpp
|
|
//
|
|
// Created by Marc Melikyan on 3/10/21.
|
|
//
|
|
|
|
#include <tuple>
|
|
#include <vector>
|
|
|
|
|
|
class MLPPHypothesisTesting {
|
|
public:
|
|
std::tuple<bool, double> chiSquareTest(std::vector<double> observed, std::vector<double> expected);
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif /* HypothesisTesting_hpp */
|