File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1483,7 +1483,6 @@ export interface DataFrame<T extends Record<string, Series> = any>
1483
1483
* Sort the DataFrame by column.
1484
1484
* ___
1485
1485
* @param by - Column(s) to sort by. Accepts expression input, including selectors. Strings are parsed as column names.
1486
- * @deprecated *since 0.16.0* @use descending
1487
1486
* @param reverse - Reverse/descending sort.
1488
1487
* @param descending - Sort in descending order. When sorting by multiple columns, can be specified per column by passing a sequence of booleans.
1489
1488
* @param nullsLast - Place null values last; can specify a single boolean applying to all columns or a sequence of booleans for per-column control.
@@ -1501,6 +1500,7 @@ export interface DataFrame<T extends Record<string, Series> = any>
1501
1500
maintainOrder,
1502
1501
} : {
1503
1502
by : ColumnsOrExpr ;
1503
+ /** @deprecated *since 0.16.0* @use descending */
1504
1504
reverse ?: boolean ; // deprecated
1505
1505
nullsLast ?: boolean ;
1506
1506
maintainOrder ?: boolean ;
You can’t perform that action at this time.
0 commit comments