DataFrame<R, C>.GetRowsAt 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#
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

ArgumentNullException

indexes is null.

See Also