DataFrame.OrderByDescending 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
OrderByDescending(String, Boolean) |
Orders the data frame by a specified column in descending order. |
OrderByDescending(String) |
Orders the data frame by a specified column in descending order. |
OrderByDescending(String, Boolean)
- Source:
- DataFrame.cs
- Source:
- DataFrame.cs
- Source:
- DataFrame.cs
Orders the data frame by a specified column in descending order.
public Microsoft.Data.Analysis.DataFrame OrderByDescending(string columnName, bool putNullValuesLast = true);
member this.OrderByDescending : string * bool -> Microsoft.Data.Analysis.DataFrame
Public Function OrderByDescending (columnName As String, Optional putNullValuesLast As Boolean = true) As DataFrame
Parameters
- columnName
- String
The column name to order by.
- putNullValuesLast
- Boolean
If true, null values are always put at the end.
Returns
Applies to
OrderByDescending(String)
Orders the data frame by a specified column in descending order.
public Microsoft.Data.Analysis.DataFrame OrderByDescending(string columnName);
member this.OrderByDescending : string -> Microsoft.Data.Analysis.DataFrame
Public Function OrderByDescending (columnName As String) As DataFrame
Parameters
- columnName
- String
The column name to order by