Skip to main content

GroupBy operations for dask.array

Project description

GitHub Workflow CI Status pre-commit.ci status image Documentation Status

PyPI Conda-forge

NASA-80NSSC18M0156 NASA-80NSSC22K0345

flox

This project explores strategies for fast GroupBy reductions with dask.array. It used to be called dask_groupby It was motivated by

  1. Dask Dataframe GroupBy blogpost
  2. numpy_groupies in Xarray issue

(See a presentation about this package, from the Pangeo Showcase).

Acknowledgements

This work was funded in part by

  1. NASA-ACCESS 80NSSC18M0156 "Community tools for analysis of NASA Earth Observing System Data in the Cloud" (PI J. Hamman, NCAR),
  2. NASA-OSTFL 80NSSC22K0345 "Enhancing analysis of NASA data with the open-source Python Xarray Library" (PIs Scott Henderson, University of Washington; Deepak Cherian, NCAR; Jessica Scheick, University of New Hampshire), and
  3. NCAR's Earth System Data Science Initiative.

It was motivated by very very many discussions in the Pangeo community.

API

There are two main functions

  1. flox.groupby_reduce(dask_array, by_dask_array, "mean") "pure" dask array interface
  2. flox.xarray.xarray_reduce(xarray_object, by_dataarray, "mean") "pure" xarray interface; though work is ongoing to integrate this package in xarray.

Implementation

See the documentation for details on the implementation.

Custom reductions

flox implements all common reductions provided by numpy_groupies in aggregations.py. It also allows you to specify a custom Aggregation (again inspired by dask.dataframe), though this might not be fully functional at the moment. See aggregations.py for examples.

mean = Aggregation(
    # name used for dask tasks
    name="mean",
    # operation to use for pure-numpy inputs
    numpy="mean",
    # blockwise reduction
    chunk=("sum", "count"),
    # combine intermediate results: sum the sums, sum the counts
    combine=("sum", "sum"),
    # generate final result as sum / count
    finalize=lambda sum_, count: sum_ / count,
    # Used when "reindexing" at combine-time
    fill_value=0,
    # Used when any member of `expected_groups` is not found
    final_fill_value=np.nan,
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flox-0.9.9.tar.gz (702.9 kB view details)

Uploaded Source

Built Distribution

flox-0.9.9-py3-none-any.whl (69.4 kB view details)

Uploaded Python 3

File details

Details for the file flox-0.9.9.tar.gz.

File metadata

  • Download URL: flox-0.9.9.tar.gz
  • Upload date:
  • Size: 702.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for flox-0.9.9.tar.gz
Algorithm Hash digest
SHA256 5822c2fbd2012b77c74b0fd078b610a0977082e084acca1f7fe3b7939b35697d
MD5 7a1246d7602949b49d3e1734559fe69d
BLAKE2b-256 417723bc2d9b6480075296af9a4c7f1499c9b23bbbc3f0c366f1e4832bed108c

See more details on using hashes here.

File details

Details for the file flox-0.9.9-py3-none-any.whl.

File metadata

  • Download URL: flox-0.9.9-py3-none-any.whl
  • Upload date:
  • Size: 69.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for flox-0.9.9-py3-none-any.whl
Algorithm Hash digest
SHA256 4c508f495e6379b08a2e51faa6a6dcc6da2f93db653322f97306f2b44e93044e
MD5 8e5d456dd90ddb5c54ac98f82ec58f86
BLAKE2b-256 454da0832d852ed3628ba36ec0ee7e3182b82a94925bd7ccbe60320255d55cf2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page