Data Frame<R, C>.Sort By Index Method
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Sort | Sorts the data frame by the row index in ascending order. |
Sort | Sorts the data frame by the row index. |
SortByIndex
Sorts the data frame by the row index in ascending order.
public DataFrame<R, C> SortByIndex()
Return Value
DataFrame<R, C>A new data frame that has been sorted by its index in ascending order.
SortByIndex(SortOrder)
Sorts the data frame by the row index.
public DataFrame<R, C> SortByIndex(
SortOrder sortOrder
)
Parameters
- sortOrder SortOrder
- The desired sort order.
Return Value
DataFrame<R, C>A new data frame that has been sorted by its index in the order specified by sortOrder.