All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.signaflo.data.regression.RegressionBuilder Maven / Gradle / Ivy

package com.github.signaflo.data.regression;

/**
 * A builder for a linear regression model.
 *
 * @author Jacob Rachiele
 * Aug. 06, 2017
 */
public interface RegressionBuilder {

    RegressionBuilder response(double... response);

    RegressionBuilder hasIntercept(boolean hasIntercept);

    LinearRegression build();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy