Mundane plotting done easy.
Project description
plotEZ
Mundane plotting made easy.
plotez is a Python library that simplifies common matplotlib plotting tasks with an intuitive API. Create complex plots
with minimal boilerplate code.
Features
- Simple API: Create complex plots with just a few lines of code
- Error Bar Plotting: Comprehensive error bar support with enhanced styling options
- Error Band Plotting: Shaded error band support via
plot_errorbandandErrorBandConfig - Dual-Axis Support: Easy creation of dual y-axis or dual x-axis plots
- Multi-Panel Layouts: Flexible subplot arrangements with automatic labeling
- File Integration: Direct plotting from CSV files
- Extensive Customization: Full control over plot appearance via parameter classes
- Custom Exceptions: Domain-specific exceptions for clear, catchable error handling
- Type Safety: Complete type hints for better IDE support and type checking (PEP 561 compliant)
- Well Tested: Comprehensive test suite with 80%+ coverage
Installation
From PyPI
pip install plotez
From Source
git clone https://github.com/syedalimohsinbukhari/plotez.git
cd plotez
pip install -e .
Development Installation
pip install -e ".[dev]"
Quick Start
import numpy as np
from plotez import plot_xy
x = np.linspace(0, 10, 100)
y = np.sin(x)
plot_xy(x, y, auto_label=True)
That's it. Three lines for a labeled plot.
Examples
Scientific Error Bars
import numpy as np
from plotez import plot_errorbar
from plotez.backend import ErrorPlotConfig
rng = np.random.default_rng(1234)
x = np.linspace(0, 10, 20)
y = np.sin(x)
y_err = 0.2 * rng.random(size=y.shape)
ep = ErrorPlotConfig(color="darkblue", marker="o", capsize=5, ecolor="red", markerfacecolor="lime")
plot_errorbar(x, y, y_err=y_err, errorbar_config=ep, auto_label=True)
Professional error bars in a few lines of config. ecolor sets the error bar colour independently from the line colour.
Dual Y-Axis
import numpy as np
from plotez import plot_xyy
x = np.linspace(0, 10, 100)
y1 = np.sin(x)
y2 = np.exp(-x / 10)
plot_xyy(x, y1, y2,
x_label="Time (s)", y1_label="Signal (V)", y2_label="Decay",
data_labels=["Oscillation", "Envelope"])
Dual axes done right. No ax.twinx() gymnastics.
Multi-Panel Grid
import numpy as np
from plotez import n_plotter
x_data = [np.linspace(0, 10, 100) for _ in range(4)]
y_data = [np.sin(x_data[0]), np.cos(x_data[1]),
np.tan(x_data[2] / 5), x_data[3] ** 2 / 100]
n_plotter(x_data, y_data, n_rows=2, n_cols=2, auto_label=True)
Four plots, one function call.
Error Bands
Use ErrorBandConfig and LinePlotConfig for explicit, IDE-friendly configuration:
import numpy as np
from plotez import plot_errorband
from plotez.backend import ErrorBandConfig, LinePlotConfig
x = np.linspace(0, 10, 50)
y = np.sin(x)
y_lower = y - 0.2
y_upper = y + 0.2
band_config = ErrorBandConfig(color="darkblue", alpha=0.25)
plot_config = LinePlotConfig(color="gold", linewidth=2, linestyle="--",
marker="o", markersize=5, markeredgecolor="k")
plot_errorband(x, y, y_lower, y_upper,
data_label="Measurement", band_config=band_config, line_config=plot_config)
The same result using the ebc / lpc shorthand aliases — familiar matplotlib parameter names, no class imports needed:
import numpy as np
from plotez import ebc, lpc, plot_errorband
x = np.linspace(0, 10, 50)
y = np.sin(x)
y_lower = y - 0.2
y_upper = y + 0.2
band_config = ebc(c="darkblue", alpha=0.25)
plot_config = lpc(c="gold", lw=2, ls="--", marker="o", ms=5, mec="k")
plot_errorband(x, y, y_lower, y_upper,
data_label="Measurement", band_config=band_config, line_config=plot_config)
Full Customization
import numpy as np
from plotez import plot_xyy
from plotez.backend import LinePlotConfig
x = np.linspace(0, 10, 50)
y1, y2 = np.sin(x), np.cos(x)
config = LinePlotConfig(
linestyle=["--", "-."],
color=["crimson", "gold"],
marker=["o", "s"],
markersize=[8, 8],
markeredgecolor=["black", "black"],
_extra={"markevery": [5, 5]},
)
plot_xyy(x, y1, y2, plot_config=config, auto_label=True)
Config classes for when defaults aren't enough. Use _extra to pass any matplotlib parameter not covered by the dataclass fields.
Development
Running Tests
pytest
With Coverage Report
pytest --cov=src/plotez --cov-report=html
Type Checking
mypy src/plotez
Building Documentation
cd docs
make html
Project Status
| Item | Status |
|---|---|
| Latest version | v0.2.1 |
| Python support | 3.10 · 3.11 · 3.12 |
| Test coverage | 80%+ |
| Type hints | PEP 561 compliant (py.typed) |
| Documentation | Read the Docs |
| License | MIT |
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License – see LICENSE file for details.
Authors
- Syed Ali Mohsin Bukhari - ali.mohsin@ist.edu.pk
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file plotez-0.2.1.tar.gz.
File metadata
- Download URL: plotez-0.2.1.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43fabd769093ccf62e9ef8017abe262097b91effd15887b3a90601f0249d39fd
|
|
| MD5 |
b602aaafff0cacff362e9926133a46e0
|
|
| BLAKE2b-256 |
2ac9dcfb07c00e8f6c0481212c3afa00b09f2749565ca6dd9c8847490a0b5a1a
|
File details
Details for the file plotez-0.2.1-py3-none-any.whl.
File metadata
- Download URL: plotez-0.2.1-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6344eceb15acbd63323a1f71aa1b950f43fbe2b91ddc2297f8a7d00f1b49bca8
|
|
| MD5 |
02c390a1fb9d5e044fe53d9937adb564
|
|
| BLAKE2b-256 |
d079640026f7c69b4fce0d9dfebbbb7b4d89368c6c6441fd9836b1aaa7a41924
|