DataFrame<R, C>.TryGetRow Method

Attempts to get the row at the specified row index.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public bool TryGetRow(
	R key,
	out DataFrameRow<R, C>? row
)

Parameters

key  R
The key of the row to be returned.
row  DataFrameRow<R, C>
On return, the row with key key, or null if the row key wasn't found.

Return Value

Boolean
true if the row was found; otherwise false.

See Also