Object/Trait

org.pmml4s.data

Series

Related Docs: trait Series | package data

Permalink

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. All

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

    Permalink

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

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val empty: Series

    Permalink

    Returns an empty row.

  8. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fromArray(values: Array[Any], schema: StructType): Series

    Permalink
  12. def fromArray(values: Array[Any]): Series

    Permalink
  13. def fromMap(map: JsObject, schema: StructType): Series

    Permalink
  14. def fromMap(map: Map[String, Any], schema: StructType): Series

    Permalink
  15. def fromMap(map: Map[String, Any], schema: StructType): Series

    Permalink
  16. def fromMap(map: Map[String, Any]): Series

    Permalink
  17. def fromMap(map: Map[String, Any]): Series

    Permalink
  18. def fromSeq(values: Seq[Any], schema: StructType): Series

    Permalink
  19. def fromSeq(values: Seq[Any]): Series

    Permalink

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

  20. def fromSplit(columns: Seq[String], values: Seq[Any]): Series

    Permalink
  21. def fromTuple(tuple: Product, schema: StructType): Series

    Permalink
  22. def fromTuple(tuple: Product): Series

    Permalink
  23. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  26. def merge(rows: Series*): Series

    Permalink

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

  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  32. def unapplySeq(row: Series): Some[Seq[Any]]

    Permalink

    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
    }
  33. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped