Click or drag to resize
FrameTRowKey, TColumnKeyTryGetRowT Method (TRowKey)
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 [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
)

Parameters

rowKey
Type: TRowKey

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

Type Parameters

T

Return Value

Type: OptionalValueSeriesTColumnKey, T

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

See Also