
net.intelie.liverig.plugin.widgets.LinearRegression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
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