2 repositorios
Management of arrays with associated labels, such as data frames and labeled tensors.
Distinct from Array Manipulations: Existing candidates cover runtime manipulation or general labeling; none specifically target labeled tensor/dataframe structures for numerical computing.
Explore 2 awesome GitHub repositories matching data & databases · Labeled Array Management. Refine with filters or upvote what's useful.
Xarray es una librería de arrays multidimensionales de Python y framework de conjuntos de datos etiquetados. Extiende la estructura de datos de NumPy añadiendo etiquetas a los arrays, permitiendo la organización de datos complejos N-dimensionales utilizando dimensiones y coordenadas con nombre. La librería proporciona una interfaz de datos NetCDF para leer y escribir formatos de datos científicos como NetCDF y Zarr. Permite la computación científica de arrays manteniendo la relación entre los datos y las coordenadas físicas durante las operaciones matemáticas. El proyecto cubre el análisis de datos multidimensionales, manipulación de datos geoespaciales y procesamiento de datos climáticos. También admite el análisis de series temporales para gestionar secuencias de observaciones a lo largo del tiempo.
Provides a framework for organizing multidimensional datasets using named dimensions and coordinates to avoid integer indexing.
xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp
Provides support for data frames and labeled tensors that integrate with lazy broadcasting.