File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 523
523
524
524
525
525
(defn group-by
526
- " Produce a map of key-fn-value->dataset. The argument to key-fn
526
+ " Produce a map of key-fn-value->dataset. The argument to key-fn
527
527
is a map of colname->column-value representing a row in dataset.
528
- Each dataset in the resulting map contains all and only rows
528
+ Each dataset in the resulting map contains all and only rows
529
529
that produce the same key-fn-value.
530
530
531
531
Options - options are passed into dtype arggroup:
741
741
742
742
743
743
(defn concat
744
- " Concatenate datasets in place using a copying-concatenation.
745
- See also concat-inplace as it may be more efficient for your use case if you have
744
+ " Concatenate datasets using a copying-concatenation.
745
+ See also [[ concat-inplace]] as it may be more efficient for your use case if you have
746
746
a small number (like less than 3) of datasets."
747
747
([dataset & datasets]
748
748
(apply concat-copying dataset datasets))
You can’t perform that action at this time.
0 commit comments