case class Column(values: STen, tpe: ColumnDataType, index: Option[ColumnIndex[_]]) extends ColumnOps with Product with Serializable
- Alphabetic
- By Inheritance
- Column
- Serializable
- Product
- Equals
- ColumnOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Column(values: STen, tpe: ColumnDataType, index: Option[ColumnIndex[_]])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def *[S](other: Double)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def *[S](other: Long)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def *[S](other: STen)(implicit arg0: Sc[S]): Column
Multiplication
Multiplication
- Definition Classes
- ColumnOps
- def +[S](other: Long)(implicit arg0: Sc[S]): Column
Adds a scalar to all elements.
Adds a scalar to all elements.
- Definition Classes
- ColumnOps
- def +[S](other: Double)(implicit arg0: Sc[S]): Column
Adds a scalar to all elements.
Adds a scalar to all elements.
- Definition Classes
- ColumnOps
- def +[S](other: Column)(implicit arg0: Sc[S]): Column
Adds to tensors.
Adds to tensors.
- Definition Classes
- ColumnOps
- def -[S](other: Column)(implicit arg0: Sc[S]): Column
Subtracts from tensor.
Subtracts from tensor.
- Definition Classes
- ColumnOps
- def /[S](other: Double)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def /[S](other: Long)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def /[S](other: STen)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def <[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def <=[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def <>[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def >[S](other: Column)(implicit arg0: Sc[S]): Column
Return a boolean tensor indicating element-wise greater-than.
Return a boolean tensor indicating element-wise greater-than.
- Definition Classes
- ColumnOps
- def >=[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def abs[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def acos[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def and[S](other: Column)(implicit arg0: Sc[S]): Column
Return a boolean tensor with element-wise logical and.
Return a boolean tensor with element-wise logical and.
- Definition Classes
- ColumnOps
- def argsort[S](descending: Boolean)(implicit arg0: Sc[S]): Column
Returns a long tensors with the argsort of the given dimension.
Returns a long tensors with the argsort of the given dimension.
Indexing the given dimension by the returned tensor would result in a sorted order.
- Definition Classes
- ColumnOps
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asin[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def atan[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def castToBool[S](implicit arg0: Sc[S]): Column
Casts to long
Casts to long
- Definition Classes
- ColumnOps
- def castToByte[S](implicit arg0: Sc[S]): Column
Casts to byte.
Casts to byte. signed 8-bit integer (like Scala's Byte) This is called Char in libtorch
- Definition Classes
- ColumnOps
- def castToDouble[S](implicit arg0: Sc[S]): Column
Casts to double
Casts to double
- Definition Classes
- ColumnOps
- def castToFloat[S](implicit arg0: Sc[S]): Column
Casts to float
Casts to float
- Definition Classes
- ColumnOps
- def castToLong[S](implicit arg0: Sc[S]): Column
Casts to long
Casts to long
- Definition Classes
- ColumnOps
- def ceil[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def cos[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def distinct(implicit scope: Scope): Column
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equ[S](other: Long)(implicit arg0: Sc[S]): Column
Returns a boolean tensors of the same shape, indicating equality with the other value.
Returns a boolean tensors of the same shape, indicating equality with the other value.
- Definition Classes
- ColumnOps
- def equ[S](other: Double)(implicit arg0: Sc[S]): Column
Returns a boolean tensors of the same shape, indicating equality with the other value.
Returns a boolean tensors of the same shape, indicating equality with the other value.
- Definition Classes
- ColumnOps
- def equ[S](other: Column)(implicit arg0: Sc[S]): Column
Returns a boolean tensors of the same shape, indicating equality with the other tensor.
Returns a boolean tensors of the same shape, indicating equality with the other tensor.
- Definition Classes
- ColumnOps
- def equijoin[IndexType](other: Column, how: JoinType = org.saddle.index.InnerJoin)(implicit scope: Scope): (Column, Column)
- def exp[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def filter(predicate: Column)(implicit scope: Scope): Column
- def floor[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- val index: Option[ColumnIndex[_]]
- def indexed: Column
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNaN[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def log[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def log1p[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def makeIndex: ColumnIndex[_]
- def maskFill[S](mask: Column, fill: Long)(implicit arg0: Sc[S]): Column
Fills the tensor with the given
fill
value in the locations indicated by themask
boolean mask.Fills the tensor with the given
fill
value in the locations indicated by themask
boolean mask.- Definition Classes
- ColumnOps
- def maskFill[S](mask: Column, fill: Double)(implicit arg0: Sc[S]): Column
Fills the tensor with the given
fill
value in the locations indicated by themask
boolean mask.Fills the tensor with the given
fill
value in the locations indicated by themask
boolean mask.- Definition Classes
- ColumnOps
- def missingnessMask[S](implicit arg0: Sc[S]): Column
- def nanToNum[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def not[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def or[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def pow[S](exponent: Double)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def product(other: Column)(implicit scope: Scope): (Column, Column)
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def reciprocal[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def remainder[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def round[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def select[S](idx: STen)(implicit arg0: Sc[S]): Column
- def sign[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def sin[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def sqrt[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def square[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def table: Table
- def tableWithName(s: String): Table
- def tan[S](implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
- def toVec: Vec[_]
- val tpe: ColumnDataType
- val values: STen
- 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 withIndex: Column
- def xor[S](other: Column)(implicit arg0: Sc[S]): Column
- Definition Classes
- ColumnOps
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated