DataFrame.OrderBy Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OrderBy(String, Boolean, Boolean) |
Orders the data frame by a specified column. |
OrderBy(String) |
Orders the data frame by a specified column. |
OrderBy(String, Boolean, Boolean)
- Source:
- DataFrame.cs
- Source:
- DataFrame.cs
- Source:
- DataFrame.cs
Orders the data frame by a specified column.
public Microsoft.Data.Analysis.DataFrame OrderBy(string columnName, bool ascending = true, bool putNullValuesLast = true);
member this.OrderBy : string * bool * bool -> Microsoft.Data.Analysis.DataFrame
Public Function OrderBy (columnName As String, Optional ascending As Boolean = true, Optional putNullValuesLast As Boolean = true) As DataFrame
Parameters
- columnName
- String
The column name to order by.
- ascending
- Boolean
Sorting order.
- putNullValuesLast
- Boolean
If true, null values are always put at the end.
Returns
Applies to
OrderBy(String)
Orders the data frame by a specified column.
public Microsoft.Data.Analysis.DataFrame OrderBy(string columnName);
member this.OrderBy : string -> Microsoft.Data.Analysis.DataFrame
Public Function OrderBy (columnName As String) As DataFrame
Parameters
- columnName
- String
The column name to order by