Metadata-Version: 2.4
Name: clarke-error-grid
Version: 0.1.0
Summary: Clarke Error Grid analysis for glucose prediction models
Author: Saurabh Barthwal
License: MIT
Project-URL: Homepage, https://github.com/yourusername/clarke-error-grid
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: matplotlib>=3.5

# Clarke Error Grid

A simple Python implementation of the Clarke Error Grid for evaluating glucose prediction models.

## Installation

```bash
pip install clarke-error-grid
```


```python
import clarke_error_grid as ceg

ref = [100, 120, 180]
pred = [110, 130, 160]

plt = ceg.plot(ref, pred)
plt.show()

zones = ceg.zone(ref, pred)

print(zones)
```

# Screenshots

![Plot](plot.png)
