Class

com.salesforce.op.dsl.RichNumericFeature

RichRealFeature

Related Doc: package RichNumericFeature

Permalink

implicit class RichRealFeature[T <: Real] extends AnyRef

Enrichment functions for Real Feature

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichRealFeature
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RichRealFeature(f: FeatureLike[T])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T], ttiv: scala.reflect.api.JavaUniverse.TypeTag[Option[Double]])

    Permalink

    f

    FeatureLike

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 autoBucketize(label: FeatureLike[RealNN], trackNulls: Boolean, trackInvalid: Boolean = TransmogrifierDefaults.TrackInvalid, minInfoGain: Double = ...): FeatureLike[OPVector]

    Permalink

    Apply a smart bucketizer transformer

    Apply a smart bucketizer transformer

    label

    label feature

    trackNulls

    option to keep track of values that were missing

    trackInvalid

    option to keep track of invalid values, eg. NaN, -/+Inf or values that fall outside the buckets

    minInfoGain

    minimum info gain, one of the stopping criteria of the Decision Tree

  6. def bucketize(trackNulls: Boolean, trackInvalid: Boolean = TransmogrifierDefaults.TrackInvalid, splits: Array[Double] = NumericBucketizer.Splits, splitInclusion: Inclusion = NumericBucketizer.SplitInclusion, bucketLabels: Option[Array[String]] = None): FeatureLike[OPVector]

    Permalink

    Apply NumericBucketizer transformer shortcut function

    Apply NumericBucketizer transformer shortcut function

    trackNulls

    option to keep track of values that were missing

    trackInvalid

    option to keep track of invalid values, eg. NaN, -/+Inf or values that fall outside the buckets

    splits

    sorted list of split points for bucketizing

    splitInclusion

    should the splits be left or right inclusive. Meaning if x1 and x2 are split points, then for Left the bucket interval is [x1, x2) and for Right the bucket interval is (x1, x2].

    bucketLabels

    sorted list of labels for the buckets

  7. def clone(): AnyRef

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. val f: FeatureLike[T]

    Permalink

    FeatureLike

  11. def fillMissingWithMean(default: Double = 0.0): FeatureLike[RealNN]

    Permalink

    Fill missing values with mean

    Fill missing values with mean

    default

    default value is the whole feature is filled with missing values

    returns

    transformed feature of type RealNN

  12. def finalize(): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. implicit val ttiv: scala.reflect.api.JavaUniverse.TypeTag[Option[Double]]

    Permalink
  22. def vectorize(fillValue: Double, fillWithMean: Boolean, trackNulls: Boolean, others: Array[FeatureLike[T]] = Array.empty, trackInvalid: Boolean = TransmogrifierDefaults.TrackInvalid, minInfoGain: Double = TransmogrifierDefaults.MinInfoGain, label: Option[FeatureLike[RealNN]] = None): FeatureLike[OPVector]

    Permalink

    Apply real vectorizer: Converts a sequence of Real features into a vector feature.

    Apply real vectorizer: Converts a sequence of Real features into a vector feature.

    fillValue

    value to pull in place of nulls

    fillWithMean

    replace missing values with mean (as apposed to constant provided in fillValue)

    trackNulls

    keep tract of when nulls occur by adding a second column to the vector with a null indicator

    others

    other features of same type

    trackInvalid

    option to keep track of invalid values, eg. NaN, -/+Inf or values that fall outside the buckets

    minInfoGain

    minimum info gain, one of the stopping criteria of the Decision Tree for the autoBucketizer

    label

    optional label column to be passed into autoBucketizer if present

    returns

    a vector feature containing the raw Features with filled missing values and the bucketized features if a label argument is passed

  23. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped