Data Frame<R, C>.Sort By Method
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Sort | Sorts the data frame by the specified column. |
Sort | Sorts the data frame by the specified column. |
Sort | Sorts the data frame by the specified column. |
Sort | Sorts the data frame by the specified column. |
SortBy(C)
Sorts the data frame by the specified column.
public DataFrame<R, C> SortBy(
C columnKey
)
Parameters
- columnKey C
- The key of the column to sort on.
Return Value
DataFrame<R, C>A new data frame that has been sorted by the column with key columnKey in ascending order.
SortBy(Int32)
Sorts the data frame by the specified column.
public DataFrame<R, C> SortBy(
int columnIndex
)
Parameters
- columnIndex Int32
- The index of the column to sort on.
Return Value
DataFrame<R, C>A new data frame that has been sorted by the column with index columnIndex in ascending order.
SortBy(C, SortOrder)
Sorts the data frame by the specified column.
public DataFrame<R, C> SortBy(
C columnKey,
SortOrder sortOrder
)
Parameters
Return Value
DataFrame<R, C>A new data frame that has been sorted by the column with key columnKey in the order specified by sortOrder.
SortBy(Int32, SortOrder)
Sorts the data frame by the specified column.
public DataFrame<R, C> SortBy(
int columnIndex,
SortOrder sortOrder
)
Parameters
Return Value
DataFrame<R, C>A new data frame that has been sorted by the column with index columnIndex in the order specified by sortOrder.