Packages

c

org.apache.spark.ml.regression

GeneralizedLinearRegressionSummary

class GeneralizedLinearRegressionSummary extends Serializable

Summary of GeneralizedLinearRegression model and predictions.

Annotations
@Since("2.0.0")
Source
GeneralizedLinearRegression.scala
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeneralizedLinearRegressionSummary
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. lazy val aic: Double

    Akaike Information Criterion (AIC) for the fitted model.

    Akaike Information Criterion (AIC) for the fitted model.

    Annotations
    @Since("2.0.0")
  2. lazy val degreesOfFreedom: Long

    Degrees of freedom.

    Degrees of freedom.

    Annotations
    @Since("2.0.0")
  3. lazy val deviance: Double

    The deviance for the fitted model.

    The deviance for the fitted model.

    Annotations
    @Since("2.0.0")
  4. lazy val dispersion: Double

    The dispersion of the fitted model.

    The dispersion of the fitted model. It is taken as 1.0 for the "binomial" and "poisson" families, and otherwise estimated by the residual Pearson's Chi-Squared statistic (which is defined as sum of the squares of the Pearson residuals) divided by the residual degrees of freedom.

    Annotations
    @Since("2.0.0")
  5. lazy val nullDeviance: Double

    The deviance for the null model.

    The deviance for the null model.

    Annotations
    @Since("2.0.0")
  6. lazy val numInstances: Long

    Number of instances in DataFrame predictions.

    Number of instances in DataFrame predictions.

    Annotations
    @Since("2.2.0")
  7. val predictionCol: String

    Field in "predictions" which gives the predicted value of each instance.

    Field in "predictions" which gives the predicted value of each instance. This is set to a new column name if the original model's predictionCol is not set.

    Annotations
    @Since("2.0.0")
  8. val predictions: DataFrame

    Predictions output by the model's transform method.

    Predictions output by the model's transform method.

    Annotations
    @Since("2.0.0")
  9. lazy val rank: Long

    The numeric rank of the fitted linear model.

    The numeric rank of the fitted linear model.

    Annotations
    @Since("2.0.0")
  10. lazy val residualDegreeOfFreedom: Long

    The residual degrees of freedom.

    The residual degrees of freedom.

    Annotations
    @Since("2.0.0")
  11. lazy val residualDegreeOfFreedomNull: Long

    The residual degrees of freedom for the null model.

    The residual degrees of freedom for the null model.

    Annotations
    @Since("2.0.0")
  12. def residuals(residualsType: String): DataFrame

    Get the residuals of the fitted model by type.

    Get the residuals of the fitted model by type.

    residualsType

    The type of residuals which should be returned. Supported options: deviance, pearson, working and response.

    Annotations
    @Since("2.0.0")
  13. def residuals(): DataFrame

    Get the default residuals (deviance residuals) of the fitted model.

    Get the default residuals (deviance residuals) of the fitted model.

    Annotations
    @Since("2.0.0")