scipp - Multi-dimensional data arrays with labeled dimensions#

A Python library enabling a modern and intuitive way of working with scientific data in Jupyter notebooks

data-structures plotting masking binning slicing scipp-neutron

scipp is heavily inspired by xarray. It enriches raw NumPy-like multi-dimensional arrays of data by adding named dimensions and associated coordinates. Multiple arrays can be combined into datasets. While for many applications xarray is certainly more suitable (and definitely much more matured) than scipp, there is a number of features missing in other situations. If your use case requires one or several of the items on the following list, using scipp may be worth considering:

  • Physical units are stored with each data or coord array and are handled in arithmetic operations.

  • Propagation of uncertainties.

  • Support for histograms, i.e., bin-edge axes, which are by 1 longer than the data extent.

  • Support for scattered data and non-destructive binning. This includes first and foremost event data, a particular form of sparse data with arrays of random-length lists, with very small list entries.

  • Support for masks stored with data.

  • Internals written in C++ for better performance (for certain applications), in combination with Python bindings.

Generic functionality of scipp is provided in the scipp Python package. In addition, more specific functionality is made available in other packages. Examples for this are scippneutron for handling data from neutron-scattering experiments, and ess for dealing with the specifics of neutron instruments at ESS.

News#

  • [March 2022] scipp-0.12.4 has been released. Check out the What’s new notebook for an overview of recent highlights and major changes.

  • We now provide pip packages of scipp, in addition to conda packages. See installation for details.

  • Scipp changed from GPLv3 to the more permissive BSD-3 license which fits better into the Python eco system.

  • Looking for scipp.neutron? This submodule has been moved into its own package, scippneutron.

Where can I get help?#

We strive to keep our documentation complete and up-to-date. However, we cannot cover all use-cases and questions users may have.

We use GitHub’s discussions forum for questions that are not answered by these documentation pages. This space can be used to both search through problems already met/solved in the community and open new discussions if none of the existing ones provide a satisfactory answer.

Documentation#

User Guide

Reference

About