bm371613 / slice-aggregator

A library for aggregating values assigned to indices by slices and the other way around

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

slice-aggregator

image

image

A library for aggregating values assigned to indices by slices

>>> import slice_aggregator
>>> a = slice_aggregator.ixs_by_slices()
>>> a[-5] += 1
>>> a[10] -= 2.5
>>> a[-10:]
-1.5

and the other way around

>>> import slice_aggregator
>>> a = slice_aggregator.slices_by_ixs()
>>> a[:-5] += 1
>>> a[-10:10] -= 2.5
>>> a[-10]
-1.5

Read the docs to find out more!

Installation

pip install slice-aggregator

About

A library for aggregating values assigned to indices by slices and the other way around

License:MIT License


Languages

Language:Python 100.0%