Trait/Object

io.eels

Frame

Related Docs: object Frame | package eels

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 buffer: Buffer

    Permalink
  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, defaultValue: 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 collect(pf: PartialFunction[Row, Row]): Frame

    Permalink
  9. def drop(k: Int): Frame

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def except(other: Frame): Frame

    Permalink
  13. def exists(p: (Row) ⇒ Boolean): Plan[Boolean]

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

    Permalink

    Filters where the given column matches the given predicate.

  15. def filter(p: (Row) ⇒ Boolean): Frame

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

    Permalink
  17. def finalize(): Unit

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

    Permalink
  19. def forall(p: (Row) ⇒ Boolean): Plan[Boolean]

    Permalink
  20. 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

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

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

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

    Permalink
  24. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
  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. def projection(columns: Seq[String]): Frame

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

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

    Permalink
  33. def size: Plan[Long]

    Permalink
  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 takeWhile(column: String, pred: (String) ⇒ Boolean): Frame

    Permalink
  37. def takeWhile(pred: (Row) ⇒ Boolean): Frame

    Permalink
  38. def to(sink: Sink): ConcurrentPlan[Long]

    Permalink
  39. def toList: Plan[List[Row]]

    Permalink
  40. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  41. def union(other: Frame): Frame

    Permalink
  42. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped