Agent skill
plotting
Creates publication-quality scientific plots. Use when making plots, figures, or visualizations. Applies tueplots TMLR styling, LaTeX rendering, no titles.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/plotting
SKILL.md
Scientific Plotting
python
from tueplots import bundles
import matplotlib.pyplot as plt
plt.rcParams.update(bundles.tmlr2023())
plt.rcParams.update({"text.usetex": True})
No titles. Save as PDF with bbox_inches="tight".
Use latex to render formula
python
plt.plot(x,y,label=r"$\sigma$)
Didn't find tool you were looking for?