pub fn fit_low_level_regression_model_without_statistics(
data_row_major: &[f64],
num_rows: usize,
num_columns: usize
) -> Result<Vec<f64>, Error>Expand description
Like fit_low_level_regression_model but does not compute any statistics after
fitting the model.
Returns a Vec<f64> analogous to the parameters field of LowLevelRegressionModel.