Trait/Object

com.fiftyonezero.eel

Frame

Related Docs: object Frame | package eel

Permalink

trait Frame extends AnyRef

Self Type
Frame
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Frame
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def iterator: Iterator[Row]

    Permalink
    Attributes
    protected
  2. abstract def schema: FrameSchema

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(frame: Frame): Frame

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. def addColumn(name: String, value: String): Frame

    Permalink
  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def drop(k: Int): Frame

    Permalink
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def exists(p: (Row) ⇒ Boolean): Boolean

    Permalink
  12. def filter(column: String, p: (String) ⇒ Boolean): Frame

    Permalink
  13. def filter(p: (Row) ⇒ Boolean): Frame

    Permalink
  14. def filterNot(p: (Row) ⇒ Boolean): Frame

    Permalink
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def find(p: (Row) ⇒ Boolean): Option[Row]

    Permalink
  17. def forall(p: (Row) ⇒ Boolean): Boolean

    Permalink
  18. def foreach[U](f: (Row) ⇒ U): Frame

    Permalink

    Execute a side effect function for every row in the frame, returning the same Frame.

    Execute a side effect function for every row in the frame, returning the same Frame.

    f

    the function to execute

    returns

    this frame, to allow for builder style chaining

  19. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def head: Option[Row]

    Permalink
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def join(other: Frame): Frame

    Permalink
  24. def map(f: (Row) ⇒ Row): Frame

    Permalink
  25. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  28. def projection(columns: Seq[String]): Frame

    Permalink
  29. def projection(first: String, rest: String*): Frame

    Permalink
  30. def reduceLeft(f: (Row, Row) ⇒ Row): Frame

    Permalink
  31. def removeColumn(name: String): Frame

    Permalink
  32. def size: Long

    Permalink
  33. def sql(query: String): Frame

    Permalink

    Execute some arbitary sql against this Frame.

  34. def step(k: Int): Frame

    Permalink

    Returns a new Frame where only each "step" row is retained.

    Returns a new Frame where only each "step" row is retained. Ie, if step is 2 then rows 1,3,5,7 will be retainined and if step was 10, then 1,11,21,31 etc.

  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def to(sink: Sink): Unit

    Permalink
  37. def toList: List[Row]

    Permalink
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. def union(frame: Frame): Frame

    Permalink
  40. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped