Header menu logo FSharp.Stats

ITable<'R, 'C, 'T> Type

A general read-only 2D table abstraction.

Instance members

Instance member Description

this.ColKeys

Full Usage: this.ColKeys

Returns: 'C[]
Modifiers: abstract

All column labels (in order).

Returns: 'C[]

this.Get

Full Usage: this.Get

Parameters:
    rowLabel : 'R
    colLabel : 'C

Returns: 'T
Modifiers: abstract

Get the value at (rowLabel, colLabel)

rowLabel : 'R
colLabel : 'C
Returns: 'T

this.GetColumn

Full Usage: this.GetColumn

Parameters:
    colLabel : 'C

Returns: ('R * 'T) seq
Modifiers: abstract

Enumerate a single column as (rowLabel * value) seq

colLabel : 'C
Returns: ('R * 'T) seq

this.GetRow

Full Usage: this.GetRow

Parameters:
    rowLabel : 'R

Returns: ('C * 'T) seq
Modifiers: abstract

Enumerate a single row as (colLabel * value) seq

rowLabel : 'R
Returns: ('C * 'T) seq

this.NumCols

Full Usage: this.NumCols

Returns: int
Modifiers: abstract

Number of columns

Returns: int

this.NumRows

Full Usage: this.NumRows

Returns: int
Modifiers: abstract

Number of rows

Returns: int

this.RowKeys

Full Usage: this.RowKeys

Returns: 'R[]
Modifiers: abstract

All row labels (in order).

Returns: 'R[]

Type something to start searching.