Metadata-Version: 2.4
Name: pattern-scope
Version: 0.1.0
Summary: Tiny CSV pattern analysis tool.
Author: RJ Sabouhi
License-Expression: MIT
Project-URL: Homepage, https://github.com/rjsabouhi/pattern-scope
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Dynamic: license-file

# pattern-scope

A tiny (<200 lines) CSV pattern-analysis tool.

It computes:
- Monotonicity score
- Outlier count
- Inflection-point estimates
- Optional matplotlib plots

## Install

pip install pattern-scope

## Usage

from patternscope.core import analyze
summary = analyze("data.csv", plot=True)
print(summary)
