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