Skip to main content

N-D labeled arrays and datasets in Python

Project description

xarray (formerly xray) is an open source project and Python package that makes working with labelled multi-dimensional arrays simple, efficient, and fun!

xarray introduces labels in the form of dimensions, coordinates and attributes on top of raw NumPy-like arrays, which allows for a more intuitive, more concise, and less error-prone developer experience. The package includes a large and growing library of domain-agnostic functions for advanced analytics and visualization with these data structures.

xarray was inspired by and borrows heavily from pandas, the popular data analysis package focused on labelled tabular data. It is particularly tailored to working with netCDF files, which were the source of xarray’s data model, and integrates tightly with dask for parallel computing.

Why xarray?

Multi-dimensional (a.k.a. N-dimensional, ND) arrays (sometimes called “tensors”) are an essential part of computational science. They are encountered in a wide range of fields, including physics, astronomy, geoscience, bioinformatics, engineering, finance, and deep learning. In Python, NumPy provides the fundamental data structure and API for working with raw ND arrays. However, real-world datasets are usually more than just raw numbers; they have labels which encode information about how the array values map to locations in space, time, etc.

xarray doesn’t just keep track of labels on arrays – it uses them to provide a powerful and concise interface. For example:

  • Apply operations over dimensions by name: x.sum('time').

  • Select values by label instead of integer location: x.loc['2014-01-01'] or x.sel(time='2014-01-01').

  • Mathematical operations (e.g., x - y) vectorize across multiple dimensions (array broadcasting) based on dimension names, not shape.

  • Flexible split-apply-combine operations with groupby: x.groupby('time.dayofyear').mean().

  • Database like alignment based on coordinate labels that smoothly handles missing values: x, y = xr.align(x, y, join='outer').

  • Keep track of arbitrary metadata in the form of a Python dictionary: x.attrs.

Learn more

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

xarray-2022.6.0.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

xarray-2022.6.0-py3-none-any.whl (927.2 kB view details)

Uploaded Python 3

File details

Details for the file xarray-2022.6.0.tar.gz.

File metadata

  • Download URL: xarray-2022.6.0.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for xarray-2022.6.0.tar.gz
Algorithm Hash digest
SHA256 1028d198493f66bb15bd35dcfdd11defd831cbee3af6589fff16f41bddd67e84
MD5 e60b27ce52967fa9e49c28df07fde90d
BLAKE2b-256 6d42d9958c0efdd555f2f21742ad0b92a5d512ac8395d00f57b6a85932eda5bc

See more details on using hashes here.

Provenance

File details

Details for the file xarray-2022.6.0-py3-none-any.whl.

File metadata

  • Download URL: xarray-2022.6.0-py3-none-any.whl
  • Upload date:
  • Size: 927.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for xarray-2022.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c052208afc3f261984049f28b962d64eb6741a7967898315642f5da85448b6b0
MD5 a5fe84ae21fc08a303673814d35c6b49
BLAKE2b-256 1cd1610e339230c7c1e9088b63fc62c6d642bb81efd41e06865805a7ba3e936a

See more details on using hashes here.

Provenance

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