Class LinearRegression.LinearRegressionResult
Object
LinearRegressionResult
- Enclosing class:
- LinearRegression
public static class LinearRegression.LinearRegressionResult extends Object
-
Method Summary
Modifier and Type Method Description List<DRes<SFixed>>
getBeta()
Estimates for the coefficientsDRes<SFixed>
getErrorVariance()
The regression error variance (s2) which is equal to the regression standard error squaredDRes<SFixed>
getRSquared()
The coefficient of determination (R2)List<DRes<SFixed>>
getStdErrorsSquared()
Standard errors (squared) for each coefficient estimate
-
Method Details
-
getBeta
Estimates for the coefficients -
getErrorVariance
public DRes<SFixed> getErrorVariance()The regression error variance (s2) which is equal to the regression standard error squared -
getRSquared
public DRes<SFixed> getRSquared()The coefficient of determination (R2) -
getStdErrorsSquared
Standard errors (squared) for each coefficient estimate
-