Skip to content

Commit 497e5af

Browse files
authored
Update dtable.md
1 parent 532709f commit 497e5af

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/src/dtable.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,11 +442,12 @@ julia> pp(innerjoin(dt, d2, on=:a))
442442
Support for `DataFrames.jl` minilanguage and operations is planned for the `DTable`
443443
to enable a seemless transition between in-memory and distributed data processing.
444444

445-
As of today `select` is available with more operations to come in the future.
445+
As of today `select`, `transform` and `combine` are available with more operations to come in the future.
446+
You can use the exact same DataFrames.jl minilanguage when using these operations.
446447

447448
The goal is to provide exactly the same output as for DataFrames using the same `args`.
448449
Even though the output should be the same the DTable may require modification of user input in order to provide optimal distributed performance.
449450

450451
One already known tactic is to avoid functions that require access to the full column at once.
451452
The user should prefer to use `ByRow` equivalents or `reduce` instead.
452-
A complete performance guide will surely be a part of the documentation at some point.
453+
A complete performance guide will surely be a part of the documentation at some point.

0 commit comments

Comments
 (0)