Deedle


RowSeries<'TRowKey, 'TColumnKey>

Namespace: Deedle

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

Constructors

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

Instance members

Instance memberDescription
GetByLevel(level)
Signature: level:ICustomLookup<'TRowKey> -> Frame<'TRowKey,'TColumnKey>
GetSlice(arg1, arg2)
Signature: ('TRowKey option * 'TRowKey option) -> Frame<'TRowKey,'TColumnKey>
Modifiers: abstract
[items]
Signature: items:seq<'TRowKey> -> Frame<'TRowKey,'TColumnKey>
[level]
Signature: level:ICustomLookup<'TRowKey> -> Frame<'TRowKey,'TColumnKey>

Static members

Static memberDescription
FromSeries(series)
Signature: series:Series<'TRowKey,ObjectSeries<'TColumnKey>> -> RowSeries<'TRowKey,'TColumnKey>

Creates a RowSeries from a filtered series (and implements slicing in terms of the specified series)

Fork me on GitHub