pmlpp/mlpp/hypothesis_testing/hypothesis_testing.h

26 lines
447 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 <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 */