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:
- 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.1.11.tar.gz
(222.1 kB
view details)
Built Distribution
dask_expr-1.1.11-py3-none-any.whl
(242.5 kB
view details)
File details
Details for the file dask_expr-1.1.11.tar.gz
.
File metadata
- Download URL: dask_expr-1.1.11.tar.gz
- Upload date:
- Size: 222.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 275689c269f9c30dbaf9d8d7e9d3b5ac5438ea6db73fdbf95b3f4bfb1381bc5a |
|
MD5 | 1c5454188057740fc3513ef904c50dec |
|
BLAKE2b-256 | 82cf051fccaf78f45867aa05c155fe7d2046ecab0f2ee57b7acceaca44405a26 |
Provenance
File details
Details for the file dask_expr-1.1.11-py3-none-any.whl
.
File metadata
- Download URL: dask_expr-1.1.11-py3-none-any.whl
- Upload date:
- Size: 242.5 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 | b9222b3d430152e3af4a1777f66bcee88651f510876cb57c720107d123d9ba63 |
|
MD5 | bf182a42add4dde3c528eedce2bde7e9 |
|
BLAKE2b-256 | 359771479af903547c5ae83e51af877094757ae0545bf28c1f8c9a575e462534 |