Data Frame<R, C>.Get Rows At Method
Returns a new data frame that contains only the rows
in the specified sequence.
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A new data frame containing only the rows whose index is in indexes.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |