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.
77``` text
88reorder { columns }
99 [.cast<ColumnType>() ]
10- .by { columnExpression } | .byDesc { columnExpression } | .byName(desc = false) { columnExpression }
10+ .by { columnExpression } | .byDesc { columnExpression } | .byName(desc = false)
1111
1212columnExpression: DataColumn.(DataColumn) -> Value
1313```
@@ -74,19 +74,19 @@ df.reorder { name }.byName(desc = true) // [name.lastName, name.firstName]
7474Reorders all columns
7575
7676``` text
77- reorderColumnsBy(dfs = true, desc = false) { columnExpression }
77+ reorderColumnsBy(atAnyDepth = true, desc = false) { columnExpression }
7878```
7979
8080** 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
8282* ` desc ` — apply descending order
8383
8484## reorderColumnsByName
8585
8686``` text
87- reorderColumnsByName(dfs = true, desc = false)
87+ reorderColumnsByName(atAnyDepth = true, desc = false)
8888```
8989
9090** 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
9292* ` desc ` — apply descending order
You can’t perform that action at this time.
0 commit comments