Brush C++ API
A flexible interpretable machine learning framework
Loading...
Searching...
No Matches
omop.cpp
Go to the documentation of this file.
1/* Brush
2copyright 2022 William La Cava
3license: GNU/GPL v3
4*/
5#include "omop.h"
6
7
8namespace Brush::Data {
9
10
11OmopData::OmopData(fs::directory_iterator omop_dir) {
12 for (fs::directory_entry dir_entry : omop_dir) {
13 if (dir_entry.is_regular_file()) {
14
15 }
16 }
17};
18
22
23}
void bind_engine(py::module &m, string name)
namespace containing Data structures used in Brush
Definition data.cpp:49
OmopData(fs::directory_iterator omop_dir)
Initialize OMOP Dataset from a directory of CSVs.
Definition omop.cpp:11