Skip to content

Commit

Permalink
apply review suggestions
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Chigarev <[email protected]>
  • Loading branch information
dchigarev committed Apr 15, 2024
1 parent d2520f8 commit 8ccca0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/usage_guide/optimization_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Range-partitioning in Modin

Modin utilizes a range-partitioning approach for specific operations, significantly enhancing
parallelism and reducing memory consumption in certain scenarios. Range-partitioning is typically
engaged for operations that has key columns (to group on, to merge on, ...).
engaged for operations that has key columns (to group on, to merge on, etc).

You can enable `range-partitioning`_ by specifying ``cfg.RangePartitioning`` :doc:`configuration variable: </flow/modin/config>`

Expand All @@ -21,7 +21,7 @@ You can enable `range-partitioning`_ by specifying ``cfg.RangePartitioning`` :do
import modin.config as cfg
cfg.RangePartitioning.put(True) # past this point methods that support range-partitioning
# will use engage it
# will use it
pd.DataFrame(...).groupby(...).mean() # use range-partitioning for groupby.mean()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Operations that support range-partitioning in Modin
###################################################

The following operations change their behavior once ``cfg.RangePartitioning`` variable is set to True.
The following operations change their behavior once ``cfg.RangePartitioning`` variable is set to ``True``.
Go through the list find out when it could be beneficial to engage range-partitioning for a certain method.

GroupBy
Expand Down

0 comments on commit 8ccca0c

Please sign in to comment.