Skip to content

Commit 2298b4d

Browse files
authored
Merge pull request #306 from AaltoSciComp/pandasalternatives
pandas alternatives, closes #282
2 parents 82057e6 + 0c4168f commit 2298b4d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

content/pandas.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,21 @@ limited by memory size. Thus, the result from fibonacci(99) would be erroneous w
601601
using numpy ints. The type of df['Number of Rabbits'][99] given by both functions above
602602
is in fact <class 'int'>.
603603

604+
Alternatives to Pandas
605+
----------------------
606+
607+
**Polars**
608+
609+
`Polars <https://pola.rs/>`__ is a DataFrame library designed to processing data with a fast lighting time. Polars is implemented in Rust Programming language and uses `Apache Arrow <https://arrow.apache.org/docs/format/Columnar.html>`__ as its memory format.
610+
611+
**Dask**
612+
613+
`Dask <https://www.dask.org/>`__ is a Python package for parallel computing in Python and uses parallel data-frames for dealing with very large arrays.
614+
615+
**Vaex**
616+
617+
`Vaex <https://github.com/vaexio/vaex>`__ is a high performance Python library for lazy Out-of-Core DataFrames, to visualize and explore big tabular datasets.
618+
604619

605620
.. keypoints::
606621

0 commit comments

Comments
 (0)