 | DataFrameSortRows(Int32, SortingType) Method |
Sorts the rows in this data frame according to the given ordered array of column
indices. Sort order is determined by the matching array of sorting types (ascending
or descending).
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame SortRows(
int[] colIndices,
SortingType[] sortingTypes
)
Public Function SortRows (
colIndices As Integer(),
sortingTypes As SortingType()
) As DataFrame
public:
DataFrame^ SortRows(
array<int>^ colIndices,
array<SortingType>^ sortingTypes
)
member SortRows :
colIndices : int[] *
sortingTypes : SortingType[] -> DataFrame
Parameters
- colIndices Int32
- An ordered array of column indices.
- sortingTypes SortingType
- An ordered array of sorting types.
Return Value
DataFrameA reference to self.
See Also