G1Joshi

matplotlib

Matplotlib data visualization library. Use for plotting.

G1Joshi 12 3 Updated 6mo ago
GitHub

Install

npx skillscat add g1joshi/agent-skills/matplotlib

Install via the SkillsCat registry.

About this skill

Matplotlib is a Python library that creates static, interactive, and animated visualizations by generating plots through Figure and Axes objects.

SKILL.md

Matplotlib

Matplotlib is the grandfather of Python plotting. It is verbose but provides infinite control.

When to Use

  • Publication: Creating figures for papers (PDF/SVG).
  • Customization: When you need to control every pixel.
  • Backend: It powers Seaborn and Pandas plotting.

Core Concepts

Figure & Axes

The container (fig) and the plot area (ax). Always use the OO interface, not plt.plot.

Backends

Interactive (Qt, WebAgg) vs Static (Agg).

Best Practices (2025)

Do:

  • Use plt.subplots(): The Object-Oriented style.
  • Use style.use('seaborn-v0_8'): Make it look decent by default.

Don't:

  • Don't use pylab: It is deprecated and pollutes namespaces.

References