@@ -12,7 +12,7 @@ Return a `GroupBy` representing a view of a `sorted` data set which each group o
1212- `ds` : an `AbstractDataset` or the output of `groupby`.
1313- `cols` : data set columns to group by. Can be any column selector
1414 ($COLUMNINDEX_STR ; $MULTICOLUMNINDEX_STR ).
15- - `alg` : The sorting algorithm for creating `grouped` data set. By default Heap algorithm is used, however, user can pass `Quicksort ` too.
15+ - `alg` : The sorting algorithm for creating `grouped` data set. By default Heap algorithm is used, however, user can pass `QuickSort ` too.
1616- `rev` : A `Bool` value or a Vector of `Bool` which indicate which column should be sorted in descending order.
1717- `mapforamts`: Whether the formated values should be used or not.
1818- `stable`: Whether the sorting alogrithm should be stable or not. Setting this to `false` often improve the performance.
@@ -97,7 +97,7 @@ Repace a data set by its sorted version and tag the data set as a grouped data s
9797- `ds` : a `Dataset`.
9898- `cols` : data set columns to group by. Can be any column selector
9999 ($COLUMNINDEX_STR ; $MULTICOLUMNINDEX_STR ).
100- - `alg` : The sorting algorithm for creating `grouped` data set. By default Heap algorithm is used, however, user can pass `Quicksort ` too.
100+ - `alg` : The sorting algorithm for creating `grouped` data set. By default Heap algorithm is used, however, user can pass `QuickSort ` too.
101101- `rev` : A `Bool` value or a Vector of `Bool` which indicate which column should be sorted in descending order.
102102- `mapforamts`: Whether the formated values should be used or not.
103103- `stable`: Whether the sorting alogrithm should be stable or not. Setting this to `false` often improve the performance.
0 commit comments