Gets the row with the specified row key.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrameRow<R, C> GetRowAt(
int index
)
Public Function GetRowAt (
index As Integer
) As DataFrameRow(Of R, C)
public:
DataFrameRow<R, C>^ GetRowAt(
int index
)
member GetRowAt :
index : int -> DataFrameRow<'R, 'C>
Parameters
- index
- Type: SystemInt32
The zero-based index of the row to be returned.
Return Value
Type:
DataFrameRowR,
CThe row at position
index.
Accessing a data frame through its rows is very expensive
compared to accessing it through its columns.
Reference