Class

org.apache.spark.ml.regression

LinearRegressionTrainingSummary

Related Doc: package regression

Permalink

class LinearRegressionTrainingSummary extends LinearRegressionSummary

:: Experimental :: Linear regression training results.

Annotations
@Experimental()
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. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. 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: http://en.wikipedia.org/wiki/Explained_variation

    Definition Classes
    LinearRegressionSummary
  9. val featuresCol: String

    Permalink
  10. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    Any
  14. val labelCol: String

    Permalink
    Definition Classes
    LinearRegressionSummary
  15. 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
  16. 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
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  20. val objectiveHistory: Array[Double]

    Permalink

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

  21. val predictionCol: String

    Permalink
    Definition Classes
    LinearRegressionSummary
  22. val predictions: DataFrame

    Permalink

    predictions outputted by the model's transform method.

    predictions outputted by the model's transform method.

    Definition Classes
    LinearRegressionSummary
  23. val r2: Double

    Permalink

    Returns R2, the coefficient of determination.

    Returns R2, the coefficient of determination. Reference: http://en.wikipedia.org/wiki/Coefficient_of_determination

    Definition Classes
    LinearRegressionSummary
  24. lazy val residuals: DataFrame

    Permalink

    Residuals (label - predicted value)

    Residuals (label - predicted value)

    Definition Classes
    LinearRegressionSummary
  25. 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
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

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

    Permalink

    Number of training iterations until termination

  29. final def wait(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. 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