Data Frame<R, C>.Get Rows At Method
Returns a new data frame that contains only the rows
in the specified sequence.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A new data frame containing only the rows whose index is in indexes.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public DataFrame<R, C> GetRowsAt(
IEnumerable<int> indexes
)
Parameters
- indexes IEnumerable<Int32>
- A sequence of zero-based indexes of the rows to return.
Return Value
DataFrame<R, C>A new data frame containing only the rows whose index is in indexes.
Exceptions
Argument | indexes is null. |