Skip to main content

ReactiveX for data science

Project description

PyPI Github WorkFlows Code Coverage Documentation

ReactiveX operators for data science and machine learning.

RxSci is a set of RxPY operators and observable factories dedicated to data science. Being reactive, RxSci is especially suited to work on streaming data and time series.

However it can also be used on traditional datasets. Such datasets are processed as bounded streams by RxSci. So it is possible to use RxSci for both streaming data and file based datasets. This is especially useful when a machine learning model is trained with a dataset and deployed on streaming data.

Get Started

This example computes a rolling mean on a window and stride of three elements:

import rx
import rxsci as rs

source = [1, 2, 3, 4, 5, 6, 7]

rx.from_(source).pipe(
    rs.state.with_memory_store([
        rs.data.roll(window=3, stride=3, pipeline=[
            rs.math.mean(reduce=True),
        ]),
    ]),
).subscribe(
    on_next=print
)
2.0
5.0

See the Maki Nage documentation for more information.

Installation

RxSci is available on PyPi and can be installed with pip:

python3 -m pip install rxsci

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

rxsci-0.26.0.tar.gz (37.4 kB view hashes)

Uploaded Source

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