Sorts the data frame by the specified column.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> SortBy(
int columnIndex
)
Public Function SortBy (
columnIndex As Integer
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ SortBy(
int columnIndex
)
member SortBy :
columnIndex : int -> DataFrame<'R, 'C>
Parameters
- columnIndex
- Type: SystemInt32
The index of the column to sort on.
Return Value
Type:
DataFrameR,
CA new data frame that has been sorted by the column with index
columnIndex in ascending order.
Reference