public class LinearRegressionSummary
extends Object
implements scala.Serializable
param: predictions predictions output by the model's transform
method.
param: predictionCol Field in "predictions" which gives the predicted value of the label at
each instance.
param: labelCol Field in "predictions" which gives the true label of each instance.
param: featuresCol Field in "predictions" which gives the features of each instance as a vector.
Modifier and Type | Method and Description |
---|---|
double[] |
coefficientStandardErrors()
Standard error of estimated coefficients and intercept.
|
long |
degreesOfFreedom()
Degrees of freedom
|
double[] |
devianceResiduals()
The weighted residuals, the usual residuals rescaled by
the square root of the instance weights.
|
double |
explainedVariance()
Returns the explained variance regression score.
|
String |
featuresCol() |
String |
labelCol() |
double |
meanAbsoluteError()
Returns the mean absolute error, which is a risk function corresponding to the
expected value of the absolute error loss or l1-norm loss.
|
double |
meanSquaredError()
Returns the mean squared error, which is a risk function corresponding to the
expected value of the squared error loss or quadratic loss.
|
long |
numInstances()
Number of instances in DataFrame predictions
|
String |
predictionCol() |
Dataset<Row> |
predictions() |
double[] |
pValues()
Two-sided p-value of estimated coefficients and intercept.
|
double |
r2()
Returns R^2^, the coefficient of determination.
|
double |
r2adj()
Returns Adjusted R^2^, the adjusted coefficient of determination.
|
Dataset<Row> |
residuals()
Residuals (label - predicted value)
|
double |
rootMeanSquaredError()
Returns the root mean squared error, which is defined as the square root of
the mean squared error.
|
double[] |
tValues()
T-statistic of estimated coefficients and intercept.
|
public double[] coefficientStandardErrors()
If LinearRegression.fitIntercept
is set to true,
then the last element returned corresponds to the intercept.
LinearRegression.solver
public long degreesOfFreedom()
public double[] devianceResiduals()
public double explainedVariance()
LinearRegression.weightCol
.
This will change in later Spark versions.public String featuresCol()
public String labelCol()
public double meanAbsoluteError()
LinearRegression.weightCol
.
This will change in later Spark versions.public double meanSquaredError()
LinearRegression.weightCol
.
This will change in later Spark versions.public long numInstances()
public double[] pValues()
If LinearRegression.fitIntercept
is set to true,
then the last element returned corresponds to the intercept.
LinearRegression.solver
public String predictionCol()
public double r2()
LinearRegression.weightCol
.
This will change in later Spark versions.public double r2adj()
LinearRegression.weightCol
.
This will change in later Spark versions.public double rootMeanSquaredError()
LinearRegression.weightCol
.
This will change in later Spark versions.public double[] tValues()
If LinearRegression.fitIntercept
is set to true,
then the last element returned corresponds to the intercept.
LinearRegression.solver