Metadata-Version: 2.4
Name: nicobalta-easyplot
Version: 0.1.3
Summary: Introduces a simple function to plot graphs with matplotlib in one function
Author-email: Nicobalta <nicobalta1@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: matplotlib
Requires-Dist: numpy
Dynamic: license-file

# EZplot

A simple wrapper around matplotlib for quick and readable plots in one single line.

## Installation

```bash
pip install nicobalta-easyplot
```

```python
import nicobalta_easyplot
```

## Example

```python
simple_graph(
    [x1, x2],
    [y1, y2],
    colors=["blue", "red"],
    labels=["curve 1", "curve 2"],
    title="Multiple plots"
)
```

## simple_graph parameters

- `X, Y`: data to plot
- `colors`: list of colors
- `linestyles`: list of line styles
- `linewidths`: list of line widths
- `labels`: list of labels
- `labels`: list of markers
- `size`: size of the plot
- `title`: plot title
- `xaxis`: title of x axis
- `yaxis`: title of y axis
- `ticks`: ticks of the plot

## License

MIT

## Versions

See [CHANGELOG.md](./CHANGELOG.md) for details.
