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

net.intelie.liverig.plugin.widgets.LinearRegression Maven / Gradle / Ivy

The newest version!
package net.intelie.liverig.plugin.widgets;

import java.util.List;

public class LinearRegression {
    private Double[] coefficients;
    private Double slope;
    private Double correlation;
    private Double intercept;
    private List points;

    public Double[] getCoefficients() {
        return coefficients;
    }

    public void setCoefficients(Double[] coefficients) {
        this.coefficients = coefficients;
    }

    public List getPoints() {
        return points;
    }

    public void setPoints(List points) {
        this.points = points;
    }

    public Double getSlope() {
        return slope;
    }

    public void setSlope(Double slope) {
        this.slope = slope;
    }

    public Double getCorrelation() {
        return correlation;
    }

    public void setCorrelation(Double correlation) {
        this.correlation = correlation;
    }

    public Double getIntercept() {
        return intercept;
    }

    public void setIntercept(Double intercept) {
        this.intercept = intercept;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy