io.eels

Frame

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
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def buffer: Buffer

  2. abstract def schema: FrameSchema

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. val DefaultBufferSize: Int

  8. def addColumn(name: String, defaultValue: Any): Frame

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

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

  12. def drop(k: Int): Frame

  13. def dropNullRows: Frame

  14. def dropWhile(columnName: String, p: (Any) ⇒ Boolean): Frame

  15. def dropWhile(p: (InternalRow) ⇒ Boolean): Frame

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

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

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

  19. def exists(p: (InternalRow) ⇒ Boolean): Boolean

  20. def explode(f: (InternalRow) ⇒ Seq[InternalRow]): Frame

  21. def fill(defaultValue: String): Frame

  22. def filter(columnName: String, p: (Any) ⇒ Boolean): Frame

    Filters where the given column matches the given predicate.

  23. def filter(p: (InternalRow) ⇒ Boolean): Frame

  24. def filterNot(p: (InternalRow) ⇒ Boolean): Frame

  25. def finalize(): Unit

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

  27. def fold[A](a: A)(fn: (A, InternalRow) ⇒ A): A

  28. def forall(p: (InternalRow) ⇒ Boolean): Boolean

  29. def foreach[U](f: (InternalRow) ⇒ U): Frame

    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

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

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

    Definition Classes
    AnyRef → Any
  32. def head: Option[InternalRow]

  33. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  34. def join(other: Frame): Frame

  35. def map(f: (InternalRow) ⇒ InternalRow): Frame

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

    Definition Classes
    AnyRef
  37. final def notify(): Unit

    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

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

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

  41. def projectionExpression(expr: String): Frame

  42. def removeColumn(columnName: String): Frame

  43. def renameColumn(nameFrom: String, nameTo: String): Frame

  44. def replace(columnName: String, fn: (Any) ⇒ Any): Frame

  45. def replace(columnName: String, from: String, target: Any): Frame

  46. def replace(from: String, target: Any): Frame

  47. def sample(k: Int): Frame

    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.

  48. def size(implicit executor: ExecutionContext): Long

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

    Definition Classes
    AnyRef
  50. def takeWhile(columnName: String, p: (Any) ⇒ Boolean): Frame

  51. def takeWhile(pred: (InternalRow) ⇒ Boolean): Frame

  52. def to(sink: Sink)(implicit executor: ExecutionContext): Long

  53. def toSeq(implicit executor: ExecutionContext): Seq[Row]

  54. def toSet(implicit executor: ExecutionContext): Set[Row]

  55. def toString(): String

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

  57. def updateColumn(column: Column): Frame

  58. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped