case class Table(columns: Vector[Column], colNames: Index[String]) extends RelationalAlgebra with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Table
- Serializable
- Product
- Equals
- RelationalAlgebra
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(name: String): Column
- Definition Classes
- RelationalAlgebra
- def apply(idx: Int): Column
- Definition Classes
- RelationalAlgebra
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bind(fn: (Table) => Table): Table
- Definition Classes
- RelationalAlgebra
- def bind(col: Column): Table
- Definition Classes
- RelationalAlgebra
- def bind(other: Table): Table
- Definition Classes
- RelationalAlgebra
- def bindWithName(col: Column, name: String): Table
- Definition Classes
- RelationalAlgebra
- def chunkedProduct(other: Table, chunkSize: Int = 5000): Resource[IO, List[Resource[IO, Table]]]
- Definition Classes
- RelationalAlgebra
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def col(name: String): Column
- Definition Classes
- RelationalAlgebra
- def colAt(idx: Int*): Table
- Definition Classes
- RelationalAlgebra
- def colAt(idx: Int): Column
- Definition Classes
- RelationalAlgebra
- def colName(i: Int): Option[String]
- val colNames: Index[String]
- def colType(name: String): ColumnDataType
- def colType(idx: Int): ColumnDataType
- def cols(names: String*): Table
- Definition Classes
- RelationalAlgebra
- def colsAt(idx: Int*): Table
- Definition Classes
- RelationalAlgebra
- val columns: Vector[Column]
- def copyToDevice[S](device: Device)(implicit arg0: Sc[S]): Table
- def cross(other: Table)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def device: Device
- def distinct(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equalDeep(other: Table): Boolean
- def equifilter[A](p: (TableExpression) => EquExpression[A])(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def equijoin[IndexType](col: ColumnSelection, other: Table, otherCol: ColumnSelection, how: JoinType)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def equijoin(col: ColumnSelection, other: Column, how: JoinType)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def extend(other: Column): Table
- Definition Classes
- RelationalAlgebra
- def extend(other: Table): Table
- Definition Classes
- RelationalAlgebra
- def extend(fn: (Table) => Table): Table
- Definition Classes
- RelationalAlgebra
- def factorize[S](cols: Int*)(implicit arg0: Sc[S]): (STen, Column)
- def filter(predicate: Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def filter(p: (Table) => Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def firstCol(name: String): Column
- Definition Classes
- RelationalAlgebra
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def groupBy[S](cols: ColumnSelection*)(implicit arg0: Sc[S]): TableWithGroups
- Definition Classes
- RelationalAlgebra
- def indexed(colIdx: Seq[Int] = Nil, names: Seq[String] = Nil): Table
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def join(other: Table, chunkSize: Int = 5000, parallelism: Int = 8)(theta: (Table) => Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def mapCols(fun: (Column, String) => Column): Table
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def numCols: Int
- def numRows: Long
- def pivot(col0: Int, col1: Int)(selectAndAggregate: (Table) => Table)(implicit scope: Scope): Table
- def product(other: Table)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def project(name: String*): Table
- Definition Classes
- RelationalAlgebra
- def remove(s: String): Table
- Definition Classes
- RelationalAlgebra
- def remove(s: Int): Table
- Definition Classes
- RelationalAlgebra
- def remove(s: Int*): Table
- Definition Classes
- RelationalAlgebra
- def rename(i: Int, s: String): Table
- Definition Classes
- RelationalAlgebra
- def replaceCol(idx: Int, update: Column): Table
- def replaceCol(idx: Int, update: STen, tpe: Option[ColumnDataType] = None): Table
- def replaceCol(name: String, update: STen, tpe: Option[ColumnDataType]): Table
- def resolveColumnIdx(cs: ColumnSelection): Int
- Definition Classes
- RelationalAlgebra
- def restrict(p: (Table) => Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def restrict(predicate: Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def rfilter(predicateOnColumns: ColumnSelection*)(predicate: (IndexMap) => Boolean)(implicit scope: Scope): Table
- def rows(idx: Array[Int])(implicit scope: Scope): Table
- def rows(idx: Int*)(implicit scope: Scope): Table
- def rows[S](idx: STen)(implicit arg0: Sc[S]): Table
- def select(p: (Table) => Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def select(predicate: Column)(implicit scope: Scope): Table
- Definition Classes
- RelationalAlgebra
- def stringify(nrows: Int = 10, ncols: Int = 10): String
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def take(idx: Array[Int])(implicit scope: Scope): Table
- def take(idx: Int*)(implicit scope: Scope): Table
- def take[S](idx: STen)(implicit arg0: Sc[S]): Table
- def toSTen[S](implicit arg0: Sc[S]): STen
- def toString(): String
- Definition Classes
- Table → AnyRef → Any
- def union[S](others: Table*)(implicit arg0: Sc[S]): Table
- Definition Classes
- RelationalAlgebra
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withColNames(n: Index[String]): Table
- def withColumns(columns: Vector[Column]): Table
- def withoutCol(s: Int): Table
- Definition Classes
- RelationalAlgebra
- def withoutCol(s: Set[Int]): Table
- Definition Classes
- RelationalAlgebra
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated