Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
LazyFrame.filterfilters rows using anExprwhileDataFrame.filterfilters rows using a mask of the typeChunkedArray<BooleanType>.
Hands on the Rust Crate Parquet
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comments¶
- Notice that a cell in a Parquet table has a type of
Fieldwhich is an enum of types.
Polars Series in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Construct Polars DataFrames in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Data Frame Implementations in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Polars
Polars is a fast multi-threaded DataFrame library in Rust and Python.
datafusion
datafusion is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format …
Hands on the Polars Crate in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
Polars is a blazingly fast DataFrames library implemented in Rust using Apache Arrow as memory model. It supports multithreading and lazy computation.
The Rust crate polars has many features . Be sure to include features which are required for your use cases. Below are some commonly useful features.