2 مستودعات
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 هي مكتبة مصفوفة متعددة الأبعاد لـ Python وإطار عمل لمجموعة بيانات مصنفة. توسع هيكل بيانات NumPy عن طريق إضافة تسميات إلى المصفوفات، مما يسمح بتنظيم البيانات المعقدة متعددة الأبعاد باستخدام أبعاد وإحداثيات مسماة. توفر المكتبة واجهة بيانات NetCDF لقراءة وكتابة صيغ البيانات العلمية مثل NetCDF وZarr. تمكّن الحوسبة المصفوفة العلمية من خلال الحفاظ على العلاقة بين البيانات والإحداثيات الفيزيائية أثناء العمليات الرياضية. يغطي المشروع تحليل البيانات متعددة الأبعاد، ومعالجة البيانات الجغرافية المكانية، ومعالجة بيانات المناخ. كما يدعم تحليل السلاسل الزمنية لإدارة تسلسلات الملاحظات بمرور الوقت.
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.