Metadata-Version: 2.4
Name: cddiagram
Version: 0.0.1
Summary: Critical Difference diagram generator in pure Python
Author-email: Alberto Azzari <alberto.azzari@univr.it>
License: MIT License
        
        Copyright (c) 2026 Alberto Azzari
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/albertoazzari/cd-diagram
Project-URL: Issues, https://github.com/albertoazzari/cd-diagram/issues
Project-URL: Source, https://github.com/albertoazzari/cd-diagram
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# cddiagram

A pure Python library for generating Critical Difference (CD) diagrams as SVG.

CD diagrams visualize the statistical comparison of multiple classifiers (or models) over multiple datasets, as introduced by Demsar (2006). They show the average rank of each model and connect groups of models whose performance differences are **not** statistically significant.

> J. Demsar, "Statistical Comparisons of Classifiers over Multiple Data Sets",
> *Journal of Machine Learning Research*, vol. 7, pp. 1-30, 2006.
> https://jmlr.org/papers/v7/demsar06a.html

## How it works

1. A **Friedman test** checks whether at least one model differs significantly from the others (at alpha = 0.05).
2. If significant, the **Nemenyi post-hoc test** computes a critical distance (CD) threshold.
3. Models whose average rank difference is less than CD are grouped together — they are not statistically distinguishable.
4. The result is rendered as an SVG diagram showing ranked models and significance groups.

## Install

```bash
pip install cddiagram
```

Requires Python 3.12+ and depends on `numpy` and `scipy`.

## Usage

### Write to file

```python
import numpy as np
from cddiagram import draw_cd_diagram

rng = np.random.default_rng(1)

models = {
    "model1": rng.normal(loc=0.2, scale=0.1, size=30),
    "model2": rng.normal(loc=0.2, scale=0.1, size=30),
    "model3": rng.normal(loc=0.4, scale=0.1, size=30),
    "model4": rng.normal(loc=0.5, scale=0.1, size=30),
    "model5": rng.normal(loc=0.7, scale=0.1, size=30),
    "model6": rng.normal(loc=0.7, scale=0.1, size=30),
    "model7": rng.normal(loc=0.8, scale=0.1, size=30),
    "model8": rng.normal(loc=0.9, scale=0.1, size=30),
}

samples = np.column_stack(list(models.values()))
draw_cd_diagram(samples, labels=list(models.keys()), out_file="out.svg", title="Model comparison")
```

<img src="./out.svg">

### Non-significant results

If the Friedman test is not significant, the function issues a warning and returns `None` — no diagram is produced because the data does not support ranking the models.

## API

```python
draw_cd_diagram(
    samples,           # 2D array-like (rows=datasets, columns=models)
    labels,            # Sequence of model names (one per column)
    title=None,        # Optional diagram title
    out_file=None,     # Optional path to write SVG file
    fig_size=None,     # Optional (width, height) tuple in pixels
) -> Element | None
```

**Input formats**: NumPy arrays, pandas DataFrames, or any object with a `.to_numpy()` / `.values` attribute.

## License

MIT
