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