| FrameTRowKey, TColumnKeyTryGetRowObservationT Method |
Try to find a row with the specified row key, or using the specified `lookup` parameter,
and return the found row together with its actual key in case `lookup` was used. In case the
row is not found, `OptionalValue.Missing` is returned.
## 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 OptionalValue<KeyValuePair<TRowKey, Series<TColumnKey, T>>> TryGetRowObservation<T>(
TRowKey rowKey,
Lookup lookup
)
Parameters
- rowKey
- Type: TRowKey
[Missing <param name="rowKey"/> documentation for "M:Deedle.Frame`2.TryGetRowObservation``1(`0,Deedle.Lookup)"]
- lookup
- Type: DeedleLookup
[Missing <param name="lookup"/> documentation for "M:Deedle.Frame`2.TryGetRowObservation``1(`0,Deedle.Lookup)"]
Type Parameters
- T
Return Value
Type:
OptionalValueKeyValuePairTRowKey,
SeriesTColumnKey,
T[Missing <returns> documentation for "M:Deedle.Frame`2.TryGetRowObservation``1(`0,Deedle.Lookup)"]
See Also