Metadata-Version: 2.2
Name: pattern_detector
Version: 0.2.2
Summary: A library for detecting patterns in time-series data.
Author: Yigit Utku Bulut and Ahmet Faruk Minareci
Author-email: yigit.utku.bulut@gmail.com, ahmetfaruk.minareci@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: joblib
Requires-Dist: scipy
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

## Pattern Detector
pattern_detector is a Python library for detecting patterns in 1-D time-series data using advanced sliding window and similarity computations.

## Suggestion of use
Pattern selection is a crucial step for pattern detection algorithms. Try to select stationary start and end points in your signal for sample pattern.

## Installation
pip install pattern_detector

## Example Usage

import pattern_detector

df = pattern_detector(df, pattern, "column_name_of_pattern")
