Click or drag to resize

DataFramePermuteColumns Method

Reorders the columns in this data frame according to the given permutation array.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame PermuteColumns(
	params int[] colIndices
)

Parameters

colIndices  Int32
The permutation array of column indices.

Return Value

DataFrame
This data frame.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the number of column indices in the permutation array is not equal to the number of columns in this data frame, or if the permutation array does not contain unique indices.
See Also