Statistics of list of (x, y) pairs from calculator-style summation registers.
Project description
Statistics with Calculator-style Summation Registers
Statistics of list of (x, y) pairs from calculator-style summation registers.
CONTENTS
Why use this package?
Use this package to obtain summary statistics of a list of $(x, y)$ pairs when the pairs are presented in sequence, such as from a control system. It is not necessary to retain the entire list in memory, this package will retain the cumulative values necessary to compute all analytical results.
There are no external dependencies on add-on packages such as numpy or scipy. Only the math package from the Python Standard Library is used.
Statistics may be calculated at any time from the summation registers.
The $(x, y)$ values may be entered in any order. It is not necessary to sort them.
Examples
In [1]: import pysumreg
In [2]: reg = pysumreg.SummationRegisters()
mean and standard deviation
In [3]: reg.clear()
...: reg.add(1, -1)
...: reg.add(2, -2)
...: reg.add(3, -3)
...: print(f"{reg.mean_x=}")
...: print(f"{reg.stddev_x=}")
...: print(f"{reg.mean_y=}")
...: print(f"{reg.stddev_y=}")
...: print(f"{reg.min_x=}")
...: print(f"{reg.max_x=}")
...: print(f"{reg.min_y=}")
...: print(f"{reg.max_y=}")
...: print(f"{reg.x_at_max_y=}")
...: print(f"{reg.x_at_min_y=}")
...:
reg.mean_x=2.0
reg.stddev_x=1.0
reg.mean_y=-2.0
reg.stddev_y=1.0
reg.min_x=1
reg.max_x=3
reg.min_y=-3
reg.max_y=-1
reg.x_at_max_y=1
reg.x_at_min_y=3
linear regression & correlation coefficient
In [4]: reg.clear()
...: reg.add(1, -1)
...: reg.add(2, -2)
...: reg.add(3, -3)
...: print(f"{reg.correlation=}")
...: print(f"{reg.intercept=}")
...: print(f"{reg.slope=}")
...:
reg.correlation=-1.0
reg.intercept=0.0
reg.slope=-1.0
peak analysis: centroid and width of x weighted by y
In [5]: reg.clear()
...: reg.add(1, 0)
...: reg.add(2, 1)
...: reg.add(3, 0)
...: print(f"{reg.max_y=}")
...: print(f"{reg.centroid=}")
...: print(f"{reg.sigma=}")
...:
reg.max_y=1
reg.centroid=2.0
reg.sigma=0.0
In [6]: reg.add(1.5, 0.5)
...: reg.add(2.5, 0.5)
...: print(f"{reg.max_y=}")
...: print(f"{reg.centroid=}")
...: print(f"{reg.sigma=}")
...:
reg.max_y=1
reg.centroid=2.0
reg.sigma=0.3535533905932738
Installation
This package may be installed by any of these commands:
pip install pysumregconda install -c conda-forge pysumregmamba install -c conda-forge pysumregmicromamba install -c conda-forge pysumreg
About
| Release | PyPI | Conda-forge | Platforms |
|---|---|---|---|
| Python | Unit Tests | Code Coverage |
|---|---|---|
- documentation: https://prjemian.github.io/pysumreg/latest
- source: https://github.com/prjemian/pysumreg
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pysumreg-1.0.7.tar.gz.
File metadata
- Download URL: pysumreg-1.0.7.tar.gz
- Upload date:
- Size: 34.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd8718ca5aa5dca4495ed8d066913fa82010fcf6d8cf57efe0745ffd9c43dc1
|
|
| MD5 |
0c23d8e533afdfcebc5c49d9201e700f
|
|
| BLAKE2b-256 |
93e61bfa6c430601ed13b327715341ef31ac1b5688cd999a4f187505e71294d5
|
File details
Details for the file pysumreg-1.0.7-py3-none-any.whl.
File metadata
- Download URL: pysumreg-1.0.7-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67015918cbc65be74e4dd00d0d74163b067a2f8be310c60e21bacb381b2bff08
|
|
| MD5 |
6de80dc46512f4c0b29ad527c4592dfc
|
|
| BLAKE2b-256 |
0179702b8757fe9b9aa67ba820f607a083ce265fdd2b8e7d18dbe4252d21204c
|