A python package for detecting gradual changepoint using Fuzzy Rough CP (roufCP)
Project description
roufcp - Rough Fuzzy Changepoint Detection
Gradual Change-Point Detection Library based on Rough Fuzzy Changepoint Detection algorithm roufcp
.
The package is available in PyPI.
Usage
>> import numpy as np
>> from roufcp import roufCP
>> X = np.concatenate([np.ones(20) * 5, np.zeros(20), np.ones(20) * 10]) + np.random.randn(60)
>> roufCP(delta = 3, w = 3).fit(X, moving_window = 10, k = 2)
Try help(roufCP)
for detailed documentation.
roufCP
is a class for Rough Fuzzy Changepoint Detection with the following attributes and functions.
-
Attributes
delta
:int
, The fuzzyness parameter, typically between 5-100w
:int
, The roughness parameter, typically between 5-100
-
Methods
-
fit_from_regularity_measure(X, regularity_measure, k)
: fit the data X with help of the regularity measure and output the estimated changepoints -
fit(X, moving_window, method, k)
: fit the data X with given regularity measures and output the estimated changepoints. The method argument defaults to kstest, available options are;meandiff
: Two sample mean differencettest
: Two sample t test statistickstest
: Two sample Kolmogorov test statisticmannwhitney
: Two sample Mann Whitney U statisticanderson-darling
: Two sample Anderson Darling test statisticadf
: Augmented Dickey Fuller test of stationarity with linear trendkpss
: Kwiatkowski–Phillips–Schmidt–Shin (KPSS) test of stationarity with linear trend
-
hypothesis_test(cp_list, cp_entropy, mu, sigma, a_delta)
: Performs hypothesis testing of the null hypothesis that there is no changepoint in the data, against the alternative that there is changepoint at the specified indices, and outputs the p-value
-
Authors & Contributors
- Subhrajyoty Roy - https://subroy13.github.io/
- Ritwik Bhaduri - https://github.com/Ritwik-Bhaduri
- Sankar Kumar Pal - https://www.isical.ac.in/~sankar/
License
This code is licensed under MIT License.
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
File details
Details for the file roufcp-0.1.1.tar.gz
.
File metadata
- Download URL: roufcp-0.1.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd88a9622195b71c67bd2fd19e09f5bd71cab7b28e0411de4b43546e5db6a027 |
|
MD5 | e51cbbfd555c76427721a2bea544232a |
|
BLAKE2b-256 | 3a2691975503759e334cc02ede9636a9e1e7a7ae0ed08d9abea6d4d72bee5a67 |
File details
Details for the file roufcp-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: roufcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 272956eac4340c8c20cbfae92867166531508eb38c93a2b010574cbd4df14549 |
|
MD5 | ad2d012a6e8e0476b17bcfae7993a7d2 |
|
BLAKE2b-256 | b05fb1b9ebafe65ac9a3ea1d141a5bf1e333e98dec170d1857e95dd76a50e35f |