Click or drag to resize

DataFrameSwapRows Method

Swaps the position of the given rows in the data frame.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame SwapRows(
	int rowIndex1,
	int rowIndex2
)

Parameters

rowIndex1  Int32
A row index.
rowIndex2  Int32
A row index.

Return Value

DataFrame
Exceptions
ExceptionCondition
IndexOutOfRangeException Thrown if a given row index is negative, or greater than or equal to the number of rows.
See Also