Permutes the objects in this column by the given permutation vector (ranks).

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DFColumn Permute(
	params int[] permutation
)
Visual Basic (Declaration)
Public Function Permute ( _
	ParamArray permutation As Integer() _
) As DFColumn
Visual C++
public:
DFColumn^ Permute(
	... array<int>^ permutation
)

Parameters

permutation
Type: array< System..::.Int32 >[]()[]
A permutation vector.

Return Value

A reference to self.

Remarks

this[ permutation[i] ] is set to the ith object in the orginal column. Permutation array must be the same length as the column length.

See Also