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: Schema

    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(column: Column, defaultValue: Any): Frame

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

    Permalink
  8. def addColumnIfNotExists(column: Column, defaultValue: Any): Frame

    Permalink
  9. def addColumnIfNotExists(name: String, defaultValue: Any): Frame

    Permalink
  10. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
  14. def dropNullRows: Frame

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

    Permalink
  16. def dropWhile(p: (InternalRow) ⇒ Boolean): Frame

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

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

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

    Permalink
  20. def exists(p: (InternalRow) ⇒ Boolean): Boolean

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

    Permalink
  22. def fill(defaultValue: String): Frame

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

    Permalink

    Filters where the given column matches the given predicate.

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

    Permalink
  25. def filterNot(p: (InternalRow) ⇒ Boolean): Frame

    Permalink
  26. def finalize(): Unit

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

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

    Permalink
  29. def forall(p: (InternalRow) ⇒ Boolean): Boolean

    Permalink
  30. def foreach[U](f: (InternalRow) ⇒ 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

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

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

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

    Permalink
  34. final def isInstanceOf[T0]: Boolean

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

    Permalink
  36. def map(f: (InternalRow) ⇒ InternalRow): Frame

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

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

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

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

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

    Permalink
  42. def projectionExpression(expr: String): Frame

    Permalink
  43. def removeColumn(columnName: String): Frame

    Permalink
  44. def renameColumn(nameFrom: String, nameTo: String): Frame

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

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

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

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

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

    Permalink
  50. def stripFromColumnName(chars: Seq[Char]): Frame

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

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

    Permalink
  53. def takeWhile(pred: (InternalRow) ⇒ Boolean): Frame

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

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

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

    Permalink
  57. def toString(): String

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

    Permalink
  59. def updateColumn(column: Column): Frame

    Permalink
  60. def updateSchemaType(columnName: String, schemaType: SchemaType): Frame

    Permalink
  61. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped