Data Frame<R, C>.Try Get Row 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.2
C#
true if the row was found; otherwise false.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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
Booleantrue if the row was found; otherwise false.