Deedle


FrameData

Namespace: Deedle

Represents the underlying (raw) data of the frame in a format that can be used for exporting data frame to other formats etc. (DataTable, CSV, Excel)

Record Fields

Record FieldDescription
ColumnKeys
Signature: seq<obj []>

A sequence of keys for all column. Individual key is an array which contains multiple values for hierarchical indices

Columns
Signature: seq<Type * IVector<obj>>

Represents the data of the frame as a sequence of columns containing type and array with column values. OptionalValue.Missing is used to represent missing data.

RowKeys
Signature: seq<obj []>

A sequence of keys for all rows. Individual key is an array which contains multiple values for hierarchical indices

Fork me on GitHub