RowSeries<'TRowKey, 'TColumnKey>
Namespace: Deedle
Attributes:
[<AbstractClass>]
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
Constructor | Description |
new(...)
Signature: (index:IIndex<'TRowKey> * vector:IVector<ObjectSeries<'TColumnKey>> * vectorBuilder:IVectorBuilder * indexBuilder:IIndexBuilder) -> RowSeries<'TRowKey,'TColumnKey>
|
CompiledName: .ctor
|
Instance members
Instance member | Description |
x.GetByLevel(level)
Signature: level:ICustomLookup<'TRowKey> -> Frame<'TRowKey,'TColumnKey>
Attributes:
[<EditorBrowsable(1)>]
|
|
x.GetSlice(arg1, arg2)
Signature: ('TRowKey option * 'TRowKey option) -> Frame<'TRowKey,'TColumnKey>
Modifiers: abstract
Attributes:
[<EditorBrowsable(1)>]
|
|
[items]
Signature: items:seq<'TRowKey> -> Frame<'TRowKey,'TColumnKey>
|
CompiledName: get_Item
|
[level]
Signature: level:ICustomLookup<'TRowKey> -> Frame<'TRowKey,'TColumnKey>
|
CompiledName: get_Item
|
Static members
Static member | Description |
RowSeries.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)
|