High Level Expressions for Dask
Project description
Dask Expressions
Dask DataFrames with query optimization.
This is a rewrite of Dask DataFrame that includes query optimization and generally improved organization.
More in our blog posts:
Example
import dask_expr as dx
df = dx.datasets.timeseries()
df.head()
df.groupby("name").x.mean().compute()
Query Representation
Dask-expr encodes user code in an expression tree:
>>> df.x.mean().pprint()
Mean:
Projection: columns='x'
Timeseries: seed=1896674884
This expression tree will be optimized and modified before execution:
>>> df.x.mean().optimize().pprint()
Div:
Sum:
Fused(375f9):
| Projection: columns='x'
| Timeseries: dtypes={'x': <class 'float'>} seed=1896674884
Count:
Fused(375f9):
| Projection: columns='x'
| Timeseries: dtypes={'x': <class 'float'>} seed=1896674884
Stability
This is the default backend for dask.DataFrame since version 2024.3.0.
API Coverage
Dask-Expr covers almost everything of the Dask DataFrame API. The only missing features are:
melt
- named GroupBy Aggregations
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dask-expr-1.0.9.tar.gz
(187.8 kB
view details)
Built Distribution
dask_expr-1.0.9-py3-none-any.whl
(184.8 kB
view details)
File details
Details for the file dask-expr-1.0.9.tar.gz
.
File metadata
- Download URL: dask-expr-1.0.9.tar.gz
- Upload date:
- Size: 187.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da9f0b25d67e1d7e41958181dd20f418830c47123c52916acb42885b56760ecc |
|
MD5 | de8330cecd8a961ad7ab831b80366155 |
|
BLAKE2b-256 | 9d9258042b9ffd8a37d93b74ceebaf8194c8b455178ca6da039194641d56cbc7 |
Provenance
File details
Details for the file dask_expr-1.0.9-py3-none-any.whl
.
File metadata
- Download URL: dask_expr-1.0.9-py3-none-any.whl
- Upload date:
- Size: 184.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74ebe50577310a10aeec5ae7e8b1ca03e5d7875211c3b2d8915eac01590e185d |
|
MD5 | b3160272ec94f8dd6cf41f4d0acd9491 |
|
BLAKE2b-256 | 2041fddaca57cf8e2a1514701d5dd830e70d4afeef786d5e189f9258b78fbb7b |