15 const std::string& path,
16 const std::string& target,
26 map<string,vector<float>> values;
27 vector<float> targets;
29 std::vector<string> names;
30 unsigned rows=0, target_col_num = 0;
32 while (std::getline(indata, line))
34 std::stringstream lineStream(line);
38 while (std::getline(lineStream, cell, sep))
44 if (!cell.compare(target))
45 target_col_num = col_num;
47 names.push_back(cell);
49 else if (col_num != target_col_num)
51 auto col_name = names.at(col_num);
52 if (!values.contains(col_name))
53 values[col_name] = {};
55 values.at(names.at(col_num)).push_back(std::stod(cell));
58 targets.push_back(std::stod(cell));
65 auto y = ArrayXf::Map(targets.data(), targets.size());
70 map<string, State> features;
71 for (
auto& [key, value] : values)
73 auto tmp = Map<ArrayXf>(value.data(), value.size());
75 if (tmp.size() != y.size())
82 bool binary_endpoint = (y.array() == 0 || y.array() == 1).all();
85 auto result =
Dataset(features, y, binary_endpoint);