Packages

object Series

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

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 apply(values: Any*): Series

    This method can be used to construct a Series with the given values.

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

    Returns an empty row.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fromArray[T](values: Array[T], schema: StructType): Series
  11. def fromArray[T](values: Array[T]): Series

    This method can be used to construct a Series from a Array of values.

  12. def fromMap(map: JsObject, schema: StructType): Series
  13. def fromMap(map: Map[String, Any], schema: StructType): Series
  14. def fromMap(map: Map[String, Any], schema: StructType): Series
  15. def fromMap(map: Map[String, Any]): Series
  16. def fromMap(map: Map[String, Any]): Series
  17. def fromSeq(values: Seq[DataVal], schema: StructType): Series
  18. def fromSeq(values: Seq[DataVal]): Series

    This method can be used to construct a Series from a Seq of values.

  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def merge(rows: Array[Series]): Series
  23. def merge(rows: Series*): Series

    Merge multiple rows into a single series, one after another.

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def unapplySeq(row: Series): Some[Seq[DataVal]]

    This method can be used to extract fields from a Series object in a pattern match.

    This method can be used to extract fields from a Series object in a pattern match. Example:

    import org.pmml4s.data._
    
    val pairs = data.map {
      case Series(key: Int, value: String) =>
        key -> value
    }
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. 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