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

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

  • 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.

  • [June 2021] scipp-0.7 has been released. The What’s new 0.7 notebook provides an overview of the highlights and major changes.

  • [March 2021] scipp-0.6 has been released. The What’s new 0.6 notebook provides an overview of the highlights and major changes.

  • [January 2021] scipp-0.5 has been released. The What’s new 0.5 notebook provides an overview of the highlights and major changes.

Where can I get help?

For questions not answered in the documentation this page provides a forum with discussions on problems already met/solved in the community.

New questions can be asked by opening a new QuestionLabel issue.

Documentation

User Guide

Reference