Skip to main content

No project description provided

Project description

# Rolling Window
## A generic rolling window function for analytics

(To be expanded on)

Example of use:

```
from dataclasses import dataclass
import random

@dataclass
class PressureData:
time: int
pressure: float

window = RollingWindow(window_type = 'sliding', datastructure=PressureData, sort=False, persistance=False, window_options=window_options)

for ii in range(0,N):
data = PressureData(time=ii, pressure=round(random.uniform(2,20),2) )
await rolling_window.add_data(id = window_id, data=data)
data_to_process = rolling_window.send(id=window_id)

```

when data is available to the processed 'data_to_process' will return a numpy representation of the data in a structured array

## License

This project is licensed under the MIT License



Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rolling_window-0.1.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distributions

rolling_window-0.1-py3.7.egg (13.5 kB view hashes)

Uploaded Source

rolling_window-0.1-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page