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(
C columnKey
)
Public Function SortBy (
columnKey As C
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ SortBy(
C columnKey
)
member SortBy :
columnKey : 'C -> DataFrame<'R, 'C>
Parameters
- columnKey
- Type: C
The key of the column to sort on.
Return Value
Type:
DataFrameR,
CA new data frame that has been sorted by the column with key
columnKey in ascending order.
Reference