Fit the model to features X and targets y.
X
y
void fit(List<List<double>> X, List<double> y) { _coeffs = linearRegressionFit(X, y); }