Skip to content

Latest commit

 

History

History
96 lines (50 loc) · 1.79 KB

README.MD

File metadata and controls

96 lines (50 loc) · 1.79 KB

PANDAS ALTERNATIVES IN PYTHON

Run several processes with differnet libraries. The time it takes is estimated over several runs of the same code.

Here is another interactive site comparing pandas and polars

https://dash-polars-pandas-docker.onrender.com/speed-comparison
  • System:

    Mackbook Pro 15 Inch, 2019

      Processor: 2.3 GHz 8-Core Intel Core i9
      
      Memory: 16 GB 2400 MHz DDR4
      
      macOS:  Sonoma 14.5 Beta (23F5049f)
    


POLARS:


DATATABLE:


MODIN:

  • Documentation

    https://modin.readthedocs.io/en/stable/

  • Installation (with dask)

    !pip install modin

    !pip install "dask[distributed]" --upgrade

  • Set up (with dask)

    import os

    os.environ['MODIN_ENGINE'] = 'dask'

    import modin.pandas as md


VAEX: