Numpy arrays with labeled axes, similar to xarray but with support for uncertainties
Project description
named_arrays
named_arrays is an implementation of a named tensor, which assigns names to each axis of an n-dimensional array such as a numpy array.
When using a numpy array, we often have to insert singleton dimensions to align axes before using binary operators etc.
This is not necessary when using a named tensor implementation such as xarray or named_arrays, axes are aligned automatically using their names.
Installation
named_arrays is available on PyPi and can be installed using pip
pip install named-arrays
Examples
ScalarArray
The fundamental type of named_arrays is the ScalarArray, which is 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',))
If we create another array with a different axis name, it will be broadcasted automatically against the first array if we add them together
b = na.ScalarArray(np.array([4, 5]), axes=('y',))
c = a + b
c
ScalarArray(
ndarray=[[5, 6],
[6, 7],
[7, 8]],
axes=('x', 'y'),
)
All the usual numpy reduction operations use the axis name instead of the axis index
c.mean('x')
ScalarArray(
ndarray=[6., 7.],
axes=('y',),
)
To index the array we can use a dictionary with the axis names as the keys
c[dict(x=0)]
ScalarArray(
ndarray=[5, 6],
axes=('y',),
)
ScalarLinearSpace
We recommend that you rarely directly create instances of ScalarArray directly. Instead, you can use the implicit array classes: ScalarLinearSpace, ScalarLogarithmicSpace, and ScalarGeometricSpace to create arrays in a similar fashion to numpy.linspace(), numpy.logspace(), and numpy.geomspace() with the advantage of being able to access the inputs to these functions at a later point.
d = na.ScalarLinearSpace(0, 1, axis='z', num=4)
d
ScalarLinearSpace(start=0, stop=1, axis='z', num=4, endpoint=True)
Thses implicit array classes work just like ScalarArray and can be used with any of the usual array operations.
a + d
ScalarArray(
ndarray=[[1. , 1.33333333, 1.66666667, 2. ],
[2. , 2.33333333, 2.66666667, 3. ],
[3. , 3.33333333, 3.66666667, 4. ]],
axes=('x', 'z'),
)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file named_arrays-0.2.4.tar.gz.
File metadata
- Download URL: named_arrays-0.2.4.tar.gz
- Upload date:
- Size: 147.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34a4082335eb927c303ad041bfb52e6c6c63b6d9462e0c4c17cce4aa9a2643fe
|
|
| MD5 |
ec9b953eb9342747f0257c81851cf1cb
|
|
| BLAKE2b-256 |
7dd0020ddff6f9dec3c15b0a7cfb18671e92bdafa08057c1d773d27365e43742
|
File details
Details for the file named_arrays-0.2.4-py3-none-any.whl.
File metadata
- Download URL: named_arrays-0.2.4-py3-none-any.whl
- Upload date:
- Size: 129.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5969098258608eff59ab5f0e00e4c6f3e2d494471815408a8071235197a77857
|
|
| MD5 |
8b19e317c9803e5314c790148d806032
|
|
| BLAKE2b-256 |
1d4ad6309bd26160f8790b148a6f796a7d62d9563953afe84596330f01856f85
|