public class GeneralizedLinearRegressionTrainingSummary extends GeneralizedLinearRegressionSummary implements scala.Serializable
GeneralizedLinearRegression
fitting and model.
param: dataset Dataset to be summarized. param: origModel Model to be summarized. This is copied to create an internal model which cannot be modified from outside. param: diagInvAtWA diagonal of matrix (A^T * W * A)^-1 in the last iteration param: numIterations number of iterations param: solver the solver algorithm used for model training
Modifier and Type | Method and Description |
---|---|
double[] |
coefficientStandardErrors()
Standard error of estimated coefficients and intercept.
|
int |
numIterations() |
double[] |
pValues()
Two-sided p-value of estimated coefficients and intercept.
|
String |
solver() |
String |
toString() |
double[] |
tValues()
T-statistic of estimated coefficients and intercept.
|
aic, degreesOfFreedom, deviance, dispersion, nullDeviance, numInstances, predictionCol, predictions, rank, residualDegreeOfFreedom, residualDegreeOfFreedomNull, residuals, residuals
public double[] coefficientStandardErrors()
WeightedLeastSquares
using the "normal" solver.
If GeneralizedLinearRegression.fitIntercept
is set to true,
then the last element returned corresponds to the intercept.
public int numIterations()
public double[] pValues()
WeightedLeastSquares
using the "normal" solver.
If GeneralizedLinearRegression.fitIntercept
is set to true,
then the last element returned corresponds to the intercept.
public String solver()
public double[] tValues()
WeightedLeastSquares
using the "normal" solver.
If GeneralizedLinearRegression.fitIntercept
is set to true,
then the last element returned corresponds to the intercept.
public String toString()
toString
in class Object