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. val DefaultBufferSize: Int

    Permalink
  6. def addColumn(name: String, defaultValue: String): Frame

    Permalink
  7. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def collect(pf: PartialFunction[Row, Row]): Frame

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

    Permalink
  11. def dropWhile(column: String, p: (String) ⇒ Boolean): Frame

    Permalink
  12. def dropWhile(p: (Row) ⇒ Boolean): Frame

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

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

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

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

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

    Permalink

    Filters where the given column matches the given predicate.

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

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

    Permalink
  20. def finalize(): Unit

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

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

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

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

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

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

    Permalink
  27. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

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

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

    Permalink
  36. def sample(k: Int): Frame

    Permalink

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

    Returns a new Frame where only each "k" row is retained. Ie, if sample is 2, then on average, every other row will be returned. If sample is 10 then only 10% of rows will be returned. When running concurrently, the rows that are sampled will vary depending on the ordering that the workers pull through the rows. Each iterator (thread) uses its own count for the sample.

  37. def size: Plan[Long]

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

    Permalink
    Definition Classes
    AnyRef
  39. def takeWhile(column: String, pred: (String) ⇒ Boolean): Frame

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

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

    Permalink
  42. def toList: ConcurrentPlan[List[Row]]

    Permalink
  43. def toString(): String

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

    Permalink
  45. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped