Panel

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.

class Object
trait Matchable
class Any
Panel.type

Value members

Concrete methods

def apply(values: Vec[_]*): Frame[Int, Int, Any]

Factory method to create a Frame from a sequence of Vec objects

Factory method to create a Frame from a sequence of Vec objects

def apply[RX : Order, CX : Order](values: Seq[Vec[_]], rowIx: Index[RX], colIx: Index[CX]): Frame[RX, CX, Any]

Factory method to create a Frame from a sequence of Vec objects, a row index, and a column index.

Factory method to create a Frame from a sequence of Vec objects, a row index, and a column index.

def apply[CX : Order](values: Seq[Vec[_]], colIx: Index[CX]): Frame[Int, CX, Any]

Factory method to create a Frame from a sequence of Vec objects and a column index.

Factory method to create a Frame from a sequence of Vec objects and a column index.

@nowarn
def apply[CX : Order, T : ScalarTag](values: (CX, Vec[_])*): 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.

def apply[RX : Order](values: Series[RX, _]*): Frame[RX, Int, Any]

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.

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[RX : Order, CX : Order](values: Seq[Series[RX, _]], colIx: Index[CX]): Frame[RX, CX, Any]

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.

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 : Order, CX : Order](values: (CX, Series[RX, _])*): 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. The row labels of the result are the outer join of the indexes of the series provided.

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 empty[RX : Order, CX : Order]: 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

Type parameters:
CX

Type of col keys

RX

Type of row keys