Skip to content

Commit 4af0226

Browse files
nalepaeWillAyd
authored andcommitted
Add pandarallel to ecosystem documentation (#29551)
1 parent 59b431f commit 4af0226

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

doc/source/ecosystem.rst

+15-1
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,21 @@ PyTables, h5py, and pymongo to move data between non pandas formats. Its graph
327327
based approach is also extensible by end users for custom formats that may be
328328
too specific for the core of odo.
329329

330+
`Pandarallel <https://github.com/nalepae/pandarallel>`__
331+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
332+
333+
Pandarallel provides a simple way to parallelize your pandas operations on all your CPUs by changing only one line of code.
334+
If also displays progress bars.
335+
336+
.. code:: python
337+
338+
from pandarallel import pandarallel
339+
340+
pandarallel.initialize(progress_bar=True)
341+
342+
# df.apply(func)
343+
df.parallel_apply(func)
344+
330345
`Ray <https://ray.readthedocs.io/en/latest/pandas_on_ray.html>`__
331346
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
332347

@@ -380,4 +395,3 @@ Library Accessor Classes
380395

381396
.. _cyberpandas: https://cyberpandas.readthedocs.io/en/latest
382397
.. _pdvega: https://altair-viz.github.io/pdvega/
383-

0 commit comments

Comments
 (0)