@@ -44,15 +44,13 @@ function byrow(ds::AbstractDataset, ::typeof(all), cols::MultiColumnIndex = :; b
4444end
4545byrow (ds:: AbstractDataset , :: typeof (all), col:: ColumnIndex ; by = x-> isequal (true , x), threads = nrow (ds)> 1000 ) = byrow (ds, all, [col]; by = by, threads = threads)
4646
47- byrow (ds:: AbstractDataset , :: typeof (isequal), cols:: MultiColumnIndex ; threads = nrow (ds)> 1000 ) = row_isequal (ds, cols, threads = threads)
47+ byrow (ds:: AbstractDataset , :: typeof (isequal), cols:: MultiColumnIndex ; threads = nrow (ds)> 1000 ) = row_isequal (ds, cols, threads = threads)
4848byrow (ds:: AbstractDataset , :: typeof (findfirst), cols:: MultiColumnIndex ; by = identity, threads = nrow (ds)> 1000 ) = row_findfirst (ds, by, cols; threads = threads)
4949byrow (ds:: AbstractDataset , :: typeof (findlast), cols:: MultiColumnIndex ; by = identity, threads = nrow (ds)> 1000 ) = row_findlast (ds, by, cols; threads = threads)
5050
5151
5252byrow (ds:: AbstractDataset , :: typeof (coalesce), cols:: MultiColumnIndex ; threads = nrow (ds)> 1000 ) = threads ? hp_row_coalesce (ds, cols) : row_coalesce (ds, cols)
5353
54- byrow (ds:: AbstractDataset , :: typeof (isequal), cols:: MultiColumnIndex ; threads = nrow (ds)> 1000 ) = threads ? hp_row_isequal (ds, cols) : row_isequal (ds, cols)
55-
5654byrow (ds:: AbstractDataset , :: typeof (mean), cols:: MultiColumnIndex = names (ds, Union{Missing, Number}); by = identity, threads = nrow (ds)> 1000 ) = threads ? hp_row_mean (ds, by, cols) : row_mean (ds, by, cols)
5755byrow (ds:: AbstractDataset , :: typeof (mean), col:: ColumnIndex ; by = identity, threads = nrow (ds)> 1000 ) = byrow (ds, mean, [col]; by = by, threads = threads)
5856
0 commit comments