Computing descriptive statistics over streaming data
Project description
livestat
Python module to compute running statistics over data, like when measuring timings from a stream.
Properties: - count - min,max,mean - std and variance - kurtosis and skewness # allows to measure the “normality of the dataset”
The main class is LiveStat to which data can be appended with append(x). For incremental values the DeltaLiveStat provides an easy to use helper.
Usage:
from livestat import LiveStat,DeltaLiveStat
x = LiveStat(“optionalname”) x.append(10) x.append(20) print x # count is 2
x = DeltaLiveStat(“dt”) x.append(10) x.append(20) print x # count is 1 containing the difference
#also from array x.extend([10,20,30,40,50])
Extra Features:
# the LiveStat objects can be combined for example when performing over different data Windows or in a multiprocessing environment x.merge(y) # now x contains the merge of the statistics
# the LiveStat object can be multipled by scalar or translated, for the objective of performing some unit transformation. All the measures are transformed appropriately x + 5 x * 5
In progress: - numpy support - normality test
Package Repository
This project is maintained here: https://github.com/sankazim/pylivestat
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 livestat-0.1.1.tar.gz.
File metadata
- Download URL: livestat-0.1.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
377737ba446370d7cf51f08fdd2aff1cc75e96973c8eec264af16f9b68b898a5
|
|
| MD5 |
fca05c470ac8ac89ac015e4132e80816
|
|
| BLAKE2b-256 |
6d4e5a26c037ef8a9f81108d50b4c6b85f8dd50edb1240df4218d0cdd06b8fdc
|
File details
Details for the file livestat-0.1.1.macosx-10.9-intel.exe.
File metadata
- Download URL: livestat-0.1.1.macosx-10.9-intel.exe
- Upload date:
- Size: 72.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a83b66305007d1ad49b885551e49d916a72728fbdeaad526a6e263148a1cfa2c
|
|
| MD5 |
a6d0e58f3397276cd3d64ce6a11dd300
|
|
| BLAKE2b-256 |
5de29b26d93cf94335f29e27eeea601475f0c9deec71cb354820844c5dd29051
|