Brush C++ API
A flexible interpretable machine learning framework
Loading...
Searching...
No Matches
omop.cpp
Go to the documentation of this file.
1
/* Brush
2
copyright 2022 William La Cava
3
license: GNU/GPL v3
4
*/
5
#include "
omop.h
"
6
7
8
namespace
Brush::Data
{
9
10
11
OmopData::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
19
OmopData::OmopData
(fs::path
json_filename
) {
20
21
};
22
23
}
bind_engine
void bind_engine(py::module &m, string name)
Definition
bind_engines.h:35
Brush::Data
namespace containing Data structures used in Brush
Definition
data.cpp:49
omop.h
Brush::Data::OmopData::OmopData
OmopData(fs::directory_iterator omop_dir)
Initialize OMOP Dataset from a directory of CSVs.
Definition
omop.cpp:11
src
data
omop.cpp
Generated by
1.10.0