Packages

trait DSeries extends Series

Linear Supertypes
Series, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DSeries
  2. Series
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def copy(): DSeries

    Make a copy of the current DSeries object.

    Make a copy of the current DSeries object.

    Definition Classes
    DSeriesSeries
  2. abstract def get(i: Int): Double

    Returns the value at position i.

    Returns the value at position i. If the value is null, null is returned.

    Definition Classes
    DSeriesSeries
  3. abstract def length: Int

    Number of elements in the Series.

    Number of elements in the Series.

    Definition Classes
    Series

Concrete 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 anyMissing: Boolean
    Definition Classes
    Series
  5. def anyNull: Boolean

    Returns true if there are any NULL values in this series.

    Returns true if there are any NULL values in this series.

    Definition Classes
    Series
  6. def apply(i: Int): Double

    Returns the value at position i.

    Returns the value at position i. If the value is null, null is returned.

    Definition Classes
    DSeriesSeries
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def columns: Array[String]
    Definition Classes
    Series
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def fieldIndex(name: String): Int

    Returns the index of a given field name.

    Returns the index of a given field name.

    Definition Classes
    Series
  13. def filter(filter: Seq[String]): Series
    Definition Classes
    Series
  14. def getAs[T](fieldName: String): T

    Returns the value of a given fieldName.

    Returns the value of a given fieldName. For primitive types if value is null it returns 'zero value' specific for primitive ie. 0 for Int - use isNullAt to ensure that value is not null

    Definition Classes
    Series
    Exceptions thrown

    ClassCastException when data type does not match.

    IllegalArgumentException when fieldName do not exist.

    UnsupportedOperationException when schema is not defined.

  15. def getAs[T](i: Int): T

    Returns the value at position i.

    Returns the value at position i. For primitive types if value is null it returns 'zero value' specific for primitive ie. 0 for Int - use isNullAt to ensure that value is not null

    Definition Classes
    Series
    Exceptions thrown

    ClassCastException when data type does not match.

  16. def getBoolean(i: Int): Boolean
    Definition Classes
    Series
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def getDouble(i: Int): Double
    Definition Classes
    Series
  19. def getInt(i: Int): Int
    Definition Classes
    Series
  20. def getLong(i: Int): Long
    Definition Classes
    Series
  21. def getString(i: Int): String
    Definition Classes
    Series
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def isMissingAt(i: Int): Boolean

    Checks whether the value at position i is missing (null or Double.NaN) if the position is valid, otherwise treated as missing too.

    Checks whether the value at position i is missing (null or Double.NaN) if the position is valid, otherwise treated as missing too.

    Definition Classes
    DSeriesSeries
  25. def isNullAt(i: Int): Boolean

    Checks whether the value at position i is null.

    Checks whether the value at position i is null.

    Definition Classes
    DSeriesSeries
  26. def mkString(sep: String): String
    Definition Classes
    Series
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def schema: StructType

    Schema for the Series.

    Schema for the Series.

    Definition Classes
    Series
  31. def show(): Unit
    Definition Classes
    Series
  32. def size: Int

    Number of elements in the Series.

    Number of elements in the Series.

    Definition Classes
    Series
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toArray: Array[Any]
    Definition Classes
    Series
  35. def toJavaMap: Map[String, Any]
    Definition Classes
    Series
  36. def toJson(isObj: Boolean = true): JsValue
    Definition Classes
    Series
  37. def toMap: Map[String, Any]
    Definition Classes
    Series
  38. def toPairSeq: Seq[(String, Any)]
    Definition Classes
    Series
  39. def toSeq: Seq[Double]
    Definition Classes
    DSeriesSeries
  40. def toString(): String
    Definition Classes
    Series → AnyRef → Any
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. 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

Inherited from Series

Inherited from AnyRef

Inherited from Any

Ungrouped