fit method

void fit(
  1. List<List<double>> X,
  2. List<int> y
)

Implementation

void fit(List<List<double>> X, List<int> y) {
  _root = _build(X, y, 0);
}