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-0.16.1.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

xarray-0.16.1-py3-none-any.whl (720.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: xarray-0.16.1.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for xarray-0.16.1.tar.gz
Algorithm Hash digest
SHA256 5e1af056ff834bf62ca57da917159328fab21b1f8c25284f92083016bb2d92a5
MD5 969fe8ce617858d3f952b104b6b1f3fa
BLAKE2b-256 7054d3416261ec3e427996f196a1a5489c553d4a4624eb61932d090f6d7c7680

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: xarray-0.16.1-py3-none-any.whl
  • Upload date:
  • Size: 720.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for xarray-0.16.1-py3-none-any.whl
Algorithm Hash digest
SHA256 72aa610a8d9ece583c3e94ad6a879aae2a33b632fea445b6685a14f288cbd9c6
MD5 5d1e665856938b80809999a3959279f1
BLAKE2b-256 7acc62ca520e349e63b05ce43c781757cbd3bea71d83ece96f2176763b57e8c2

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