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 fromMap(map: JsObject, schema: StructType): Series

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

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

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

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

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

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

    Permalink

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

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

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

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

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

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

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

    Permalink

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  29. 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
    }
  30. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped