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

edu.cmu.tetradapp.model.RegressionModel Maven / Gradle / Ivy

There is a newer version: 7.6.6
Show newest version
package edu.cmu.tetradapp.model;

import java.util.List;

/**
 * Methods common to regression models.
 *
 * @author josephramsey
 */
public interface RegressionModel {
    List getVariableNames();

    List getRegressorNames();

    void setRegressorName(List predictors);

    String getTargetName();

    void setTargetName(String target);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy