| FrameTRowKey, TColumnKeyGetRowT Method (TRowKey, Lookup) |
Returns a row with the specieifed key. This method is generic and returns the result
as a series containing values of the specified type. To get heterogeneous series of
type `ObjectSeries<'TCol>`, use the `frame.Rows` property.
## Parameters
- `rowKey` - Specifies the key of the row to be returned
- `lookup` - Specifies how to find value in a frame with ordered rows when the key does
not exactly match (look for nearest available value with the smaller/greater key).
[category:Accessors and slicing]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public Series<TColumnKey, T> GetRow<T>(
TRowKey rowKey,
Lookup lookup
)
Parameters
- rowKey
- Type: TRowKey
[Missing <param name="rowKey"/> documentation for "M:Deedle.Frame`2.GetRow``1(`0,Deedle.Lookup)"]
- lookup
- Type: DeedleLookup
[Missing <param name="lookup"/> documentation for "M:Deedle.Frame`2.GetRow``1(`0,Deedle.Lookup)"]
Type Parameters
- T
Return Value
Type:
SeriesTColumnKey,
T[Missing <returns> documentation for "M:Deedle.Frame`2.GetRow``1(`0,Deedle.Lookup)"]
See Also