Metadata-Version: 2.4
Name: nelson-rules
Version: 0.1.0
Summary: Apply Nelson rules
Author-email: Regenplatz <nelson@regenplatz.de>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Regenplatz/nelson_rules
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.3.3
Requires-Dist: pytest>=9.0.1
Requires-Dist: twine>=6.2.0
Dynamic: license-file

# nelson_rules

<a href=https://www.python.org/>
    <img src=https://img.shields.io/badge/python-3.12-FFDC50?logo=python&logoColor=FFDC50 alt="Python 3.12">
</a>
<a href=https://numpy.org/>
    <img src=https://img.shields.io/badge/NumPy-grey?logo=NumPy alt="NumPy">
</a>
<a href=https://docs.pytest.org/en/stable/>
    <img src=https://img.shields.io/badge/pytest-grey?logo=pytest&logoColor=C7D302 alt="pytest">
</a>

<br>
<br>

<a id="readme-top"></a>

<!-- TABLE OF CONTENTS -->
<details>
  <summary>Table of Contents</summary>
  <ol>
    <li><a href="#background">Background</a></li>
    <li><a href="#about-the-package">About the package</a></li>   
    <li><a href="#how-to-install">How to install</a></li> 
    <li><a href="#how-to-import">How to import</a></li>
    <li><a href="#how-to-run-with-default-settings">How to run with default settings</a></li>
    <li><a href="#how-to-run-with-other-settings">How to run with other settings</a></li>    
    <li><a href="#how-to-access-results">How to access results</a></li>    
    <li><a href="#how-to-access-further-information">How to access further information</a></li>
  </ol>
</details>

<br>


<!-- ABOUT THE PROJECT -->
## Background

The 8 Nelson rules can be used in **process control** to detect **potential 
anomalies** during production. Those rules were defined by Lloyd S. Nelson 
in the 1980s. The rules and their exemplary visualizations are available on 
[wikipedia][wikipedia-url].

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## About the package

The package was built with [Numpy][NumPy-url] and tested with [pytest][pytest-url].

By the use of this package, your data is checked for all 8 rules. 
As input data, a 1D NumPy Array is preferred, but a list of numeric values is
also possible. As result, a dictionary is provided, that contains numpy arrays
as values for each rule. It furthermore contains the *input data* and the 
evaluated *zscores*.

Results on each Nelson rule are available as 1D arrays with binary values 
(0, 1). Those results could e.g. be displayed in visuals with potential anomalies (1) 
being colored in red.

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## How to install
```
pip install nelson-rules
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## How to import
```
from nelson_rules import NelsonRules
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## How to run with default settings

*Default settings* refer to the values that are stated in the rules above.
E.g. for rule 1, we'd check if at least one point is more than 3 
standard deviations from the mean. The default values are encoded as follows: 
```
d_rule_settings = {
    "rule1": {"f_std": 3.0},
    "rule2": {"i_points": 9},
    "rule3": {"i_points": 6},
    "rule4": {"i_points": 14},
    "rule5": {"i_points": 3, "i_points_window": 2, "f_std": 2.0},
    "rule6": {"i_points": 5, "i_points_window": 4, "f_std": 1.0},
    "rule7": {"i_points": 15, "f_std": 1.0},
    "rule8": {"i_points": 8, "f_std": 1.0},
}
```

To check for data points following Nelson rules, the *rule setting 
dictionary* is not needed as a parameter, because it is already set as 
default. Therefore, simply run the following on your data: 
```
nr = NelsonRules(<your_data_in_1D_numpy_array>)
d_results = nr.apply_rules()
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## How to run with other settings

In case you'd like to run the code with other settings, adapt 
*d_rule_settings* to your needs and run:
```
nr = NelsonRules(<your_data_in_1D_numpy_array>, d_rule_settings)
d_results = nr.apply_rules()
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## How to access results

The results are available in a dictionary with the following structure:
```
d_results = {
    "input_data":    [...],
    "zscore":        [...],
    "rule1":         [...],
    "rule2":         [...],
    "rule3":         [...],
    "rule4":         [...],
    "rule5_points":  [...],
    "rule5_windows": [...],
    "rule6_points":  [...],
    "rule6_windows": [...],
    "rule7":         [...],
    "rule8":         [...]
}
```
You could load the dictionary into a pandas DataFrame (as mentioned above).
<br> Or you could access the data of interest like this:
```
d_results["rule4"]
```
For rules 5 and 6, *points* and *windows* are available. By this, you could
visualize both: the n data points out of m points (window) that fulfill 
the rule. You can access this data as follows:
```
d_results["rule5_points"]
d_results["rule5_windows"]
```

The program is set up with [NumPy][NumPy-url]. However, if you'd 
like to get the results in a [pandas][pandas-url] DataFrame, run:
```
df = pd.DataFrame(data=d_results)
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## How to access further information

*Zscores* are available as numpy array and can be accessed as follows:
```
d_results["zscore"]
```

*Mean* and x *standard deviations* are available as single values each. 
They can be accessed as follows:
```
## mean
nr_mean = nr.f_mean

## 1 standard deviation
nr_1std = nr.f_std

## 2 standard deviations
nr_2std = 2 * nr.f_std

## 3 standard deviations
nr_3std = 3 * nr.f_std
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>



<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
[wikipedia-url]: https://en.wikipedia.org/wiki/Nelson_rules
[NumPy-logo]: https://numpy.org/images/logo.svg
[NumPy-url]: https://numpy.org/
[pytest-logo]: https://docs.pytest.org/en/stable/_static/pytest1.png
[pytest-url]: https://docs.pytest.org/en
[pandas-url]: https://pandas.pydata.org/
