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>

CompiledName: .ctor

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

CompiledName: .ctor

Instance members

Instance memberDescription
x.GetByLevel(level)
Signature: level:ICustomLookup<'TColumnKey> -> Frame<'TRowKey,'TColumnKey>
Attributes:
[<EditorBrowsable(1)>]
x.GetSlice(lo, hi)
Signature: (lo:'TColumnKey option * hi:'TColumnKey option) -> Frame<'TRowKey,'TColumnKey>
Attributes:
[<EditorBrowsable(1)>]
[items]
Signature: items:seq<'TColumnKey> -> Frame<'TRowKey,'TColumnKey>

CompiledName: get_Item

[level]
Signature: level:ICustomLookup<'TColumnKey> -> Frame<'TRowKey,'TColumnKey>

CompiledName: get_Item

Fork me on GitHub