Class

org.apache.spark.ml.regression

LinearRegressionTrainingSummary

Related Doc: package regression

Permalink

class LinearRegressionTrainingSummary extends LinearRegressionSummary

:: Experimental :: Linear regression training results. Currently, the training summary ignores the training weights except for the objective trace.

Annotations
@Since( "1.5.0" ) @Experimental()
Source
LinearRegression.scala
Linear Supertypes
LinearRegressionSummary, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LinearRegressionTrainingSummary
  2. LinearRegressionSummary
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. lazy val coefficientStandardErrors: Array[Double]

    Permalink

    Standard error of estimated coefficients and intercept.

    Standard error of estimated coefficients and intercept. This value is only available when using the "normal" solver.

    If LinearRegression.fitIntercept is set to true, then the last element returned corresponds to the intercept.

    Definition Classes
    LinearRegressionSummary
    See also

    LinearRegression.solver

  7. val degreesOfFreedom: Long

    Permalink

    Degrees of freedom

    Degrees of freedom

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "2.2.0" )
  8. lazy val devianceResiduals: Array[Double]

    Permalink

    The weighted residuals, the usual residuals rescaled by the square root of the instance weights.

    The weighted residuals, the usual residuals rescaled by the square root of the instance weights.

    Definition Classes
    LinearRegressionSummary
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. val explainedVariance: Double

    Permalink

    Returns the explained variance regression score.

    Returns the explained variance regression score. explainedVariance = 1 - variance(y - \hat{y}) / variance(y) Reference: Wikipedia explain variation

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "1.5.0" )
    Note

    This ignores instance weights (setting all to 1.0) from LinearRegression.weightCol. This will change in later Spark versions.

  12. val featuresCol: String

    Permalink

    Field in "predictions" which gives the features of each instance as a vector.

    Field in "predictions" which gives the features of each instance as a vector.

    Definition Classes
    LinearRegressionSummary
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. val labelCol: String

    Permalink

    Field in "predictions" which gives the true label of each instance.

    Field in "predictions" which gives the true label of each instance.

    Definition Classes
    LinearRegressionSummary
  18. val meanAbsoluteError: Double

    Permalink

    Returns the mean absolute error, which is a risk function corresponding to the expected value of the absolute error loss or l1-norm loss.

    Returns the mean absolute error, which is a risk function corresponding to the expected value of the absolute error loss or l1-norm loss.

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "1.5.0" )
    Note

    This ignores instance weights (setting all to 1.0) from LinearRegression.weightCol. This will change in later Spark versions.

  19. val meanSquaredError: Double

    Permalink

    Returns the mean squared error, which is a risk function corresponding to the expected value of the squared error loss or quadratic loss.

    Returns the mean squared error, which is a risk function corresponding to the expected value of the squared error loss or quadratic loss.

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "1.5.0" )
    Note

    This ignores instance weights (setting all to 1.0) from LinearRegression.weightCol. This will change in later Spark versions.

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. lazy val numInstances: Long

    Permalink

    Number of instances in DataFrame predictions

    Number of instances in DataFrame predictions

    Definition Classes
    LinearRegressionSummary
  24. val objectiveHistory: Array[Double]

    Permalink

    objective function (scaled loss + regularization) at each iteration.

  25. lazy val pValues: Array[Double]

    Permalink

    Two-sided p-value of estimated coefficients and intercept.

    Two-sided p-value of estimated coefficients and intercept. This value is only available when using the "normal" solver.

    If LinearRegression.fitIntercept is set to true, then the last element returned corresponds to the intercept.

    Definition Classes
    LinearRegressionSummary
    See also

    LinearRegression.solver

  26. val predictionCol: String

    Permalink

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

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

    Definition Classes
    LinearRegressionSummary
  27. val predictions: DataFrame

    Permalink

    predictions output by the model's transform method.

    predictions output by the model's transform method.

    Definition Classes
    LinearRegressionSummary
  28. val r2: Double

    Permalink

    Returns R2, the coefficient of determination.

    Returns R2, the coefficient of determination. Reference: Wikipedia coefficient of determination

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "1.5.0" )
    Note

    This ignores instance weights (setting all to 1.0) from LinearRegression.weightCol. This will change in later Spark versions.

  29. lazy val residuals: DataFrame

    Permalink

    Residuals (label - predicted value)

    Residuals (label - predicted value)

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "1.5.0" )
  30. val rootMeanSquaredError: Double

    Permalink

    Returns the root mean squared error, which is defined as the square root of the mean squared error.

    Returns the root mean squared error, which is defined as the square root of the mean squared error.

    Definition Classes
    LinearRegressionSummary
    Annotations
    @Since( "1.5.0" )
    Note

    This ignores instance weights (setting all to 1.0) from LinearRegression.weightCol. This will change in later Spark versions.

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. lazy val tValues: Array[Double]

    Permalink

    T-statistic of estimated coefficients and intercept.

    T-statistic of estimated coefficients and intercept. This value is only available when using the "normal" solver.

    If LinearRegression.fitIntercept is set to true, then the last element returned corresponds to the intercept.

    Definition Classes
    LinearRegressionSummary
    See also

    LinearRegression.solver

  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. val totalIterations: Int

    Permalink

    Number of training iterations until termination

    Number of training iterations until termination

    This value is only available when using the "l-bfgs" solver.

    Annotations
    @Since( "1.5.0" )
    See also

    LinearRegression.solver

  35. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LinearRegressionSummary

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Members