Class

org.apache.spark.ml.classification

BinaryLogisticRegressionSummary

Related Doc: package classification

Permalink

class BinaryLogisticRegressionSummary extends LogisticRegressionSummary

:: Experimental :: Binary Logistic regression results for a given model.

Annotations
@Experimental() @Since( "1.5.0" )
Source
LogisticRegression.scala
Linear Supertypes
LogisticRegressionSummary, Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BinaryLogisticRegressionSummary
  2. LogisticRegressionSummary
  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. lazy val areaUnderROC: Double

    Permalink

    Computes the area under the receiver operating characteristic (ROC) curve.

    Computes the area under the receiver operating characteristic (ROC) curve.

    Annotations
    @Since( "1.5.0" )
    Note

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

  5. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. lazy val fMeasureByThreshold: DataFrame

    Permalink

    Returns a dataframe with two fields (threshold, F-Measure) curve with beta = 1.0.

    Returns a dataframe with two fields (threshold, F-Measure) curve with beta = 1.0.

    Annotations
    @Since( "1.5.0" )
    Note

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

  10. 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
    BinaryLogisticRegressionSummaryLogisticRegressionSummary
    Annotations
    @Since( "1.6.0" )
  11. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    Any
  15. 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
    BinaryLogisticRegressionSummaryLogisticRegressionSummary
    Annotations
    @Since( "1.5.0" )
  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. lazy val pr: DataFrame

    Permalink

    Returns the precision-recall curve, which is a Dataframe containing two fields recall, precision with (0.0, 1.0) prepended to it.

    Returns the precision-recall curve, which is a Dataframe containing two fields recall, precision with (0.0, 1.0) prepended to it.

    Annotations
    @Since( "1.5.0" )
    Note

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

  20. lazy val precisionByThreshold: DataFrame

    Permalink

    Returns a dataframe with two fields (threshold, precision) curve.

    Returns a dataframe with two fields (threshold, precision) curve. Every possible probability obtained in transforming the dataset are used as thresholds used in calculating the precision.

    Annotations
    @Since( "1.5.0" )
    Note

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

  21. val predictions: DataFrame

    Permalink

    dataframe output by the model's transform method.

    dataframe output by the model's transform method.

    Definition Classes
    BinaryLogisticRegressionSummaryLogisticRegressionSummary
    Annotations
    @Since( "1.5.0" )
  22. val probabilityCol: String

    Permalink

    field in "predictions" which gives the probability of each class as a vector.

    field in "predictions" which gives the probability of each class as a vector.

    Definition Classes
    BinaryLogisticRegressionSummaryLogisticRegressionSummary
    Annotations
    @Since( "1.5.0" )
  23. lazy val recallByThreshold: DataFrame

    Permalink

    Returns a dataframe with two fields (threshold, recall) curve.

    Returns a dataframe with two fields (threshold, recall) curve. Every possible probability obtained in transforming the dataset are used as thresholds used in calculating the recall.

    Annotations
    @Since( "1.5.0" )
    Note

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

  24. lazy val roc: DataFrame

    Permalink

    Returns the receiver operating characteristic (ROC) curve, which is a Dataframe having two fields (FPR, TPR) with (0.0, 0.0) prepended and (1.0, 1.0) appended to it.

    Returns the receiver operating characteristic (ROC) curve, which is a Dataframe having two fields (FPR, TPR) with (0.0, 0.0) prepended and (1.0, 1.0) appended to it. See http://en.wikipedia.org/wiki/Receiver_operating_characteristic

    Annotations
    @Since( "1.5.0" )
    Note

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

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

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

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

Inherited from LogisticRegressionSummary

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Members