Click or drag to resize
FrameTRowKey, TColumnKeyTryGetRowT Method (TRowKey, Lookup)
Returns a row with the specieifed key wrapped in `OptionalValue`. When the specified key is not found, the result is `OptionalValue.Missing`. 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
C#
public OptionalValue<Series<TColumnKey, T>> TryGetRow<T>(
	TRowKey rowKey,
	Lookup lookup
)

Parameters

rowKey
Type: TRowKey

[Missing <param name="rowKey"/> documentation for "M:Deedle.Frame`2.TryGetRow``1(`0,Deedle.Lookup)"]

lookup
Type: DeedleLookup

[Missing <param name="lookup"/> documentation for "M:Deedle.Frame`2.TryGetRow``1(`0,Deedle.Lookup)"]

Type Parameters

T

Return Value

Type: OptionalValueSeriesTColumnKey, T

[Missing <returns> documentation for "M:Deedle.Frame`2.TryGetRow``1(`0,Deedle.Lookup)"]

See Also