File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Returns [`DataFrame`](DataFrame.md) with a new order of selected columns.
7
7
``` text
8
8
reorder { columns }
9
9
[.cast<ColumnType>() ]
10
- .by { columnExpression } | .byDesc { columnExpression } | .byName(desc = false) { columnExpression }
10
+ .by { columnExpression } | .byDesc { columnExpression } | .byName(desc = false)
11
11
12
12
columnExpression: DataColumn.(DataColumn) -> Value
13
13
```
@@ -74,19 +74,19 @@ df.reorder { name }.byName(desc = true) // [name.lastName, name.firstName]
74
74
Reorders all columns
75
75
76
76
``` text
77
- reorderColumnsBy(dfs = true, desc = false) { columnExpression }
77
+ reorderColumnsBy(atAnyDepth = true, desc = false) { columnExpression }
78
78
```
79
79
80
80
** Parameters:**
81
- * ` dfs ` — reorder columns inside [ ` ColumnGroups ` ] ( DataColumn.md#columngroup ) and [ ` FrameColumn ` ] ( DataColumn.md#framecolumn ) recursively
81
+ * ` atAnyDepth ` — reorder columns inside [ ` ColumnGroups ` ] ( DataColumn.md#columngroup ) and [ ` FrameColumn ` ] ( DataColumn.md#framecolumn ) recursively
82
82
* ` desc ` — apply descending order
83
83
84
84
## reorderColumnsByName
85
85
86
86
``` text
87
- reorderColumnsByName(dfs = true, desc = false)
87
+ reorderColumnsByName(atAnyDepth = true, desc = false)
88
88
```
89
89
90
90
** Parameters:**
91
- * ` dfs ` — reorder columns inside [ ` ColumnGroups ` ] ( DataColumn.md#columngroup ) and [ ` FrameColumn ` ] ( DataColumn.md#framecolumn ) recursively
91
+ * ` atAnyDepth ` — reorder columns inside [ ` ColumnGroups ` ] ( DataColumn.md#columngroup ) and [ ` FrameColumn ` ] ( DataColumn.md#framecolumn ) recursively
92
92
* ` desc ` — apply descending order
You can’t perform that action at this time.
0 commit comments