DataFrame<R, C>.GetRow Method

Gets the row with the specified row key.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public DataFrameRow<R, C> GetRow(
	R key
)

Parameters

key  R
The key of the row to be returned.

Return Value

DataFrameRow<R, C>
The row with key key.

Remarks

Accessing a data frame through its rows is very expensive compared to

See Also