Packages

object TimeSeries extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TimeSeries
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def diffOverflow[V](ts: TimeSeries[V], overflowValue: V)(implicit arg0: Numeric[V], num: Numeric[V]): TimeSeries[V]

    Return new series with difference between 2 points with the possibility of overflow value Use case: Older sensor equipment often used simple counters to record events.

    Return new series with difference between 2 points with the possibility of overflow value Use case: Older sensor equipment often used simple counters to record events. These counters would continue to some max value (i.e. 100) and then rollover to 0

  7. def differentiate[V](ts: TimeSeries[V])(implicit arg0: Numeric[V], num: Numeric[V]): TimeSeries[V]

    Return new series with difference between 2 points

  8. def empty[V](implicit arg0: Numeric[V]): TimeSeries[V]

    Create empty series

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def fromTimestamps[V](rows: Seq[(Long, V)])(implicit arg0: Numeric[V]): TimeSeries[V]

    Create TimeSeries from timestamps

  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  15. def integrate[V](ts: TimeSeries[V])(implicit arg0: Numeric[V], num: Numeric[V]): TimeSeries[V]

    Accumulate sum for each point

  16. def integrateByTime[V](ts: TimeSeries[V], g: (LocalDateTime) ⇒ LocalDateTime)(implicit arg0: Numeric[V], num: Numeric[V]): TimeSeries[V]

    Integrate series for selected window.

    Integrate series for selected window. Windows are not overlapping and sum starts at 0 at the beginning of each window

  17. def interpolate[V](xs: TimeSeries[V], delta: Duration)(implicit arg0: Numeric[V], num: Fractional[V]): TimeSeries[V]

    Return new series by interpolate missing points

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  22. def step[V](ts: TimeSeries[V], d: Duration)(implicit arg0: Fractional[V], num: Fractional[V]): TimeSeries[V]

    This function resamples index.

    This function resamples index. But the values are not interpolated but just fractions of current values. For example if we have value 10 every hour and we run step with 15 minutes range we will get values 2.5 every 15 minutes (10/4)

  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped