Class

com.salesforce.op

Insights

Related Doc: package op

Permalink

case class Insights(derivedFeatureName: String, stagesApplied: Seq[String], derivedFeatureGroup: Option[String], derivedFeatureValue: Option[String], excluded: Option[Boolean] = None, corr: Option[Double] = None, cramersV: Option[Double] = None, mutualInformation: Option[Double] = None, pointwiseMutualInformation: Map[String, Double] = Map.empty, countMatrix: Map[String, Double] = Map.empty, contribution: Seq[Double] = Seq.empty, min: Option[Double] = None, max: Option[Double] = None, mean: Option[Double] = None, variance: Option[Double] = None) extends Product with Serializable

Summary of insights for a derived feature

derivedFeatureName

name of derived feature

stagesApplied

the stageNames of all stages applied to make feature from the raw input feature

derivedFeatureGroup

grouping of this feature if the feature is a pivot

derivedFeatureValue

value of the feature if the feature is a numeric encoding of a non-numeric feature or bucket

excluded

was this derived feature excluded from the model by the sanity checker

corr

the correlation of this feature with the label

cramersV

the cramersV of this feature with the label (when both label and feature are categorical)

mutualInformation

the mutual information for this feature (and all features in its grouping) with the label (categorical features only)

pointwiseMutualInformation

the mutual information of this feature with each value of the label (categorical features only)

countMatrix

the counts of the occurrence of this feature with each of the label values (categorical features only)

contribution

the contribution of this feature to the model (eg feature importance for random forest, weight for logistic regression)

min

the min value of this feature

max

the max value of this feature

mean

the mean value of this feature

variance

the variance of this feature

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Insights
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Insights(derivedFeatureName: String, stagesApplied: Seq[String], derivedFeatureGroup: Option[String], derivedFeatureValue: Option[String], excluded: Option[Boolean] = None, corr: Option[Double] = None, cramersV: Option[Double] = None, mutualInformation: Option[Double] = None, pointwiseMutualInformation: Map[String, Double] = Map.empty, countMatrix: Map[String, Double] = Map.empty, contribution: Seq[Double] = Seq.empty, min: Option[Double] = None, max: Option[Double] = None, mean: Option[Double] = None, variance: Option[Double] = None)

    Permalink

    derivedFeatureName

    name of derived feature

    stagesApplied

    the stageNames of all stages applied to make feature from the raw input feature

    derivedFeatureGroup

    grouping of this feature if the feature is a pivot

    derivedFeatureValue

    value of the feature if the feature is a numeric encoding of a non-numeric feature or bucket

    excluded

    was this derived feature excluded from the model by the sanity checker

    corr

    the correlation of this feature with the label

    cramersV

    the cramersV of this feature with the label (when both label and feature are categorical)

    mutualInformation

    the mutual information for this feature (and all features in its grouping) with the label (categorical features only)

    pointwiseMutualInformation

    the mutual information of this feature with each value of the label (categorical features only)

    countMatrix

    the counts of the occurrence of this feature with each of the label values (categorical features only)

    contribution

    the contribution of this feature to the model (eg feature importance for random forest, weight for logistic regression)

    min

    the min value of this feature

    max

    the max value of this feature

    mean

    the mean value of this feature

    variance

    the variance of this feature

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. val contribution: Seq[Double]

    Permalink

    the contribution of this feature to the model (eg feature importance for random forest, weight for logistic regression)

  7. val corr: Option[Double]

    Permalink

    the correlation of this feature with the label

  8. val countMatrix: Map[String, Double]

    Permalink

    the counts of the occurrence of this feature with each of the label values (categorical features only)

  9. val cramersV: Option[Double]

    Permalink

    the cramersV of this feature with the label (when both label and feature are categorical)

  10. val derivedFeatureGroup: Option[String]

    Permalink

    grouping of this feature if the feature is a pivot

  11. val derivedFeatureName: String

    Permalink

    name of derived feature

  12. val derivedFeatureValue: Option[String]

    Permalink

    value of the feature if the feature is a numeric encoding of a non-numeric feature or bucket

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. val excluded: Option[Boolean]

    Permalink

    was this derived feature excluded from the model by the sanity checker

  15. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    Any
  18. val max: Option[Double]

    Permalink

    the max value of this feature

  19. val mean: Option[Double]

    Permalink

    the mean value of this feature

  20. val min: Option[Double]

    Permalink

    the min value of this feature

  21. val mutualInformation: Option[Double]

    Permalink

    the mutual information for this feature (and all features in its grouping) with the label (categorical features only)

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

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

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

    Permalink
    Definition Classes
    AnyRef
  25. val pointwiseMutualInformation: Map[String, Double]

    Permalink

    the mutual information of this feature with each value of the label (categorical features only)

  26. val stagesApplied: Seq[String]

    Permalink

    the stageNames of all stages applied to make feature from the raw input feature

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

    Permalink
    Definition Classes
    AnyRef
  28. val variance: Option[Double]

    Permalink

    the variance of this feature

  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 Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped