named-arrays is an implementation of a named tensor, which assigns a name to each axis of an n-dimensional array such as a numpy array.
With a bare numpy array, the meaning of each axis lives in the programmer's head, and combining two arrays usually means inserting singleton dimensions until their shapes line up. Naming the axes removes both problems: arrays broadcast against each other by matching names, so a singleton dimension is never needed, and an operation such as a mean along the wavelength axis says exactly that.
named-arrays provides a very unapologetic implementation of a named tensor, since axes can only be accessed using their names,
unlike xarray which allows for both name and index.
Support for astropy.units is built in, so the values inside an array can carry a physical unit.
named-arrays is available on PyPI and can be installed using pip
pip install named-arraysThe array types form a hierarchy, from a plain named tensor up to a discrete function of several variables.
ScalarArray, a named tensor with Astropy Quantity support. Analogue ofxarray.Variable. Implicit variants such asScalarLinearSpacedescribe an array without materializing it.UncertainScalarArray, which carries a distribution alongside the nominal value and propagates uncertainty through every operation.Cartesian2dVectorArrayandCartesian3dVectorArray, along with named-component variants such asSpectralPositionalVectorArray, where each component is itself any of the array types above.Cartesian2dMatrixArrayand its relatives, which are vectors of vectors supporting the usual matrix operations.FunctionArray, a discrete function pairinginputswithoutputs. Analogue of anxarray.DataArray.
Several modules extend these types to other libraries: na.plt for matplotlib, na.random and na.stats for sampling and statistics, na.regridding for resampling curvilinear grids, na.optimize for root finding and minimization, and na.transformations for rotations and translations.
The shape is a dictionary.
shape maps each axis name to its length, and there is no positional equivalent.
Anywhere the numpy API takes an axis=0, this library takes an axis="detector_x".
Arrays broadcast by matching names.
Two arrays combine along the axes whose names they share, and the axes unique to either one are added to the result.
An array of shape {"x": 3} plus an array of shape {"y": 2} therefore has shape {"x": 3, "y": 2}, with no reshaping and no singleton dimensions.
Adding a new dimension to a calculation is a matter of giving an input an extra named axis.
Arrays are explicit or implicit.
An explicit array such as ScalarArray stores its values.
An implicit array such as ScalarLinearSpace stores the arguments that define it, so start, stop, and num remain available long after the array is created.
Implicit arrays work in every operation an explicit array does, and .explicit materializes one on demand.
Most of the numpy API already works.
These arrays implement the __array_function__ and __array_ufunc__ protocols, so np.mean, np.sqrt, and most of their siblings accept them directly, using axis names.
Operations that numpy cannot express are defined in the named_arrays namespace instead.
The full documentation, including the API reference, tutorials, and executable versions of the examples below, is hosted at named-arrays.readthedocs.io.
The fundamental type is the ScalarArray, a composition of a numpy ndarray-like object and a tuple of axis names, which must have the same length as the number of dimensions in the array.
import numpy as np
import named_arrays as na
a = na.ScalarArray(np.array([1, 2, 3]), axes=("x",))
b = na.ScalarArray(np.array([4, 5]), axes=("y",))Since the two arrays have different axis names, adding them together broadcasts them against each other automatically.
c = a + bScalarArray(
ndarray=[[5, 6],
[6, 7],
[7, 8]],
axes=('x', 'y'),
)
The result is two-dimensional, and its shape is a dictionary.
c.shape{'x': 3, 'y': 2}
All the usual numpy reduction operations take the name of the axis to remove.
c.mean("x")ScalarArray(
ndarray=[6., 7.],
axes=('y',),
)
To index the array, use a dictionary with the axis names as the keys, so the meaning of an index does not depend on the order of the axes.
c[dict(x=0)]ScalarArray(
ndarray=[5, 6],
axes=('y',),
)
We recommend that you rarely create instances of ScalarArray directly.
Instead, use the implicit array classes ScalarLinearSpace, ScalarLogarithmicSpace, and ScalarGeometricSpace, which mirror numpy.linspace(), numpy.logspace(), and numpy.geomspace(), with the advantage of remembering the arguments used to define them.
d = na.ScalarLinearSpace(0, 1, axis="z", num=4)ScalarLinearSpace(start=0, stop=1, axis='z', num=4, endpoint=True, centers=False)
These implicit classes work just like a ScalarArray in any operation, and .explicit materializes one on demand.
a + dScalarArray(
ndarray=[[1. , 1.33333333, 1.66666667, 2. ],
[2. , 2.33333333, 2.66666667, 3. ],
[3. , 3.33333333, 3.66666667, 4. ]],
axes=('x', 'z'),
)
An extra named axis costs nothing, so a family of curves is a single array, and one plotting call draws all of them.
import astropy.units as u
import matplotlib.pyplot as plt
# Define the independent variable
x = na.linspace(0, 2 * np.pi, axis="x", num=101) * u.rad
# Add an axis representing three different amplitudes
amplitude = na.ScalarArray(np.array([1, 2, 3]), axes=("amplitude",))
# The result has both axes, without any reshaping
y = amplitude * np.sin(x)
fig, ax = plt.subplots(constrained_layout=True);
na.plt.plot(x, y, axis="x", ax=ax);
ax.set_xlabel(f"angle ({x.unit:latex_inline})");
ax.set_ylabel("amplitude");An UncertainScalarArray carries a distribution alongside its nominal value, and every operation propagates it, so the error bar at the end of a calculation needs no separate bookkeeping.
# Define a radius known to about 5%
radius = na.NormalUncertainScalarArray(
nominal=10 * u.cm,
width=0.5 * u.cm,
num_distribution=11,
)
# Compute the area of the corresponding circle
area = np.pi * np.square(radius)
# The uncertainty in the radius is carried into the area
area.nominal, np.std(area.distribution, axis="_distribution")Install the package in editable mode along with its test dependencies, and run the test suite using pytest:
pip install -e .[test]
pytestThe suite is large, so continuous integration splits it into five groups using pytest-split. To run one group:
pytest --splits 5 --group 1This project is linted using ruff, which is checked by continuous integration:
ruff check .To build the documentation locally:
pip install -e .[doc]
sphinx-build docs docs/_build/html