Deedle


ColumnSeries<'TRowKey, 'TColumnKey>

Namespace: Deedle

Represents a series of columns from a frame. The type inherits from a series of series representing individual columns (Series<'TColumnKey, ObjectSeries<'TRowKey>>) but hides slicing operations with new versions that return frames.

Constructors

ConstructorDescription
new(series)
Signature: series:Series<'TColumnKey,ObjectSeries<'TRowKey>> -> ColumnSeries<'TRowKey,'TColumnKey>
new(...)
Signature: (index:IIndex<'TColumnKey> * vector:IVector<ObjectSeries<'TRowKey>> * vectorBuilder:IVectorBuilder * indexBuilder:IIndexBuilder) -> ColumnSeries<'TRowKey,'TColumnKey>

Instance members

Instance memberDescription
GetByLevel(level)
Signature: level:ICustomLookup<'TColumnKey> -> Frame<'TRowKey,'TColumnKey>
GetSlice(lo, hi)
Signature: (lo:'TColumnKey option * hi:'TColumnKey option) -> Frame<'TRowKey,'TColumnKey>
[items]
Signature: items:seq<'TColumnKey> -> Frame<'TRowKey,'TColumnKey>
[level]
Signature: level:ICustomLookup<'TColumnKey> -> Frame<'TRowKey,'TColumnKey>
Fork me on GitHub