class PointsAfterOutlierTracker extends AnyRef

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

Instance Constructors

  1. new PointsAfterOutlierTracker()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addPoints(pointsIsOutlier: List[(Point, Boolean)]): Unit

    pointsIsOutlier

    an array of tuples containing a point and a boolean that is true if the point is an outlier

  5. def addPoints(points: List[Point], isOutlierFunction: (Point) => Boolean): Unit

    adds points to pointsAfterOutlier, and calculates consecutiveOutliersCount with new points

    adds points to pointsAfterOutlier, and calculates consecutiveOutliersCount with new points

    isOutlierFunction

    function that maps from point to being an outlier

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. def consecutiveOutliersCountIsMin: Boolean

    true if consecutiveOutliersCount == consecutiveOutliersCountMinVal

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def flushPoints(): List[Point]

    returns pointsAfterOutlier and then resets tracker, i.e.

    returns pointsAfterOutlier and then resets tracker, i.e. pointsAfterOutlier becomes empty array and consecutiveOutliersCount is is set to 0

  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. def getConsecutiveOutliersCount: Option[Int]

    equals amount of outliers that are next to each other, where every space (point that is not an outlier) subtracts one from the result

    equals amount of outliers that are next to each other, where every space (point that is not an outlier) subtracts one from the result

    Example:
    1. if O means outlier and o means not outlier, then these lists of points, i.e. the points in pointsAfterOutlier would return:

      • OoOOo => 1
      • oooO => 1
      • oOOoo => 0
  14. def getPoints: List[Point]
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. def isEmpty: Boolean
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  21. def removePointsUntilOutlierFound(isOutlierFunction: (Point) => Boolean): List[Point]

    Removes points from pointsAfterOutlier until an outlier is found, and returns the removed points

    Removes points from pointsAfterOutlier until an outlier is found, and returns the removed points

    returns

    points from left to right terminating at first outlier found after reevaluating whether a point is an outlier with isOutlierFunction

  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped