object Panel
Convenience constructors for a Frame[RX, CX, Any] that accept arbitrarily-typed Vectors and Series as constructor parameters, leaving their internal representations unchanged.
- Alphabetic
- By Inheritance
- Panel
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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[RX, CX](values: (CX, Series[RX, _])*)(implicit arg0: ST[RX], arg1: ORD[RX], arg2: ST[CX], arg3: ORD[CX]): Frame[RX, CX, Any]
Factory method to create a Frame from a sequence of tuples, where the first element of the tuple is a column label, and the second a series of values.
Factory method to create a Frame from a sequence of tuples, where the first element of the tuple is a column label, and the second a series of values. The row labels of the result are the outer join of the indexes of the series provided.
- def apply[RX, CX](values: Seq[Series[RX, _]], colIx: Index[CX])(implicit arg0: ST[RX], arg1: ORD[RX], arg2: ST[CX], arg3: ORD[CX]): Frame[RX, CX, Any]
Factory method to create a Frame from a sequence of series, also specifying the column index to use.
Factory method to create a Frame from a sequence of series, also specifying the column index to use. The row labels of the result are the outer join of the indexes of the series provided.
- def apply[RX](values: Series[RX, _]*)(implicit arg0: ST[RX], arg1: ORD[RX]): Frame[RX, Int, Any]
Factory method to create a Frame from a sequence of Series.
Factory method to create a Frame from a sequence of Series. The row labels of the result are the outer join of the indexes of the series provided.
- def apply[CX, T](values: (CX, Vec[_])*)(implicit arg0: ST[CX], arg1: ORD[CX], arg2: ST[T]): Frame[Int, CX, Any]
Factory method to create a Frame from tuples whose first element is the column label and the second is a Vec of values.
Factory method to create a Frame from tuples whose first element is the column label and the second is a Vec of values.
- Annotations
- @nowarn()
- def apply[CX](values: Seq[Vec[_]], colIx: Index[CX])(implicit arg0: ST[CX], arg1: ORD[CX]): Frame[Int, CX, Any]
Factory method to create a Frame from a sequence of Vec objects and a column index.
- def apply[RX, CX](values: Seq[Vec[_]], rowIx: Index[RX], colIx: Index[CX])(implicit arg0: ST[RX], arg1: ORD[RX], arg2: ST[CX], arg3: ORD[CX]): Frame[RX, CX, Any]
Factory method to create a Frame from a sequence of Vec objects, a row index, and a column index.
- def apply(values: Vec[_]*): Frame[Int, Int, Any]
Factory method to create a Frame from a sequence of Vec objects
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def empty[RX, CX](implicit arg0: ST[RX], arg1: ORD[RX], arg2: ST[CX], arg3: ORD[CX]): Frame[RX, CX, Any]
Factory method to create an empty Frame whose columns have type Any
Factory method to create an empty Frame whose columns have type Any
- RX
Type of row keys
- CX
Type of col keys
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()