Python package for Bayesian Change Point and Circular Binary Segmentation
Project description
Linear Segmentation
linear_segmentation using Bayesian Change Point Segmentation or Circular Binary segmentation.
Install
If you dont already have numpy and scipy installed, it is best to download
Anaconda
, a python distribution that has them included.
https://continuum.io/downloads
Dependencies can be installed by:
pip install -r requirements.txt
PyPI install, presuming you have all its requirements installed:
pip install linear_segment
Usage
from linear_segment import segment
import numpy as np
# Create data
np.random.seed(10)
x = np.random.random(300000)
x[10000:20000] = x[10000:20000] + 0.1
x[25000:27000] = x[25000:27000] - 1
labels = np.repeat('a', len(x))
# Calculate segments
segments = segment(x, labels, method="online_both")
segments
segments = segment(x, labels, method="cbs")
segments
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
linear_segment-1.1.2.tar.gz
(502.3 kB
view hashes)
Built Distribution
Close
Hashes for linear_segment-1.1.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e42cb64ce502e7173cc4afedbc066bebbc0855f00530d38db1af08f20c9535b6 |
|
MD5 | 711a0efdc8e88254b72a07115421da25 |
|
BLAKE2b-256 | 83eabbf8a6f09f0dccfc22d9b46f4def8bdc0fb7263c57e9538410f0350ead6c |