data-visualization

Installation
SKILL.md

Data Visualization

Create compelling visualizations to explore and communicate data insights.

Quick Start

Matplotlib Basics

import matplotlib.pyplot as plt

# Line plot
plt.figure(figsize=(10, 6))
plt.plot(x, y, marker='o', linestyle='-', color='blue', label='Series 1')
plt.xlabel('X Label')
plt.ylabel('Y Label')
plt.title('Title')
plt.legend()
plt.grid(True, alpha=0.3)
plt.show()
Installs
68
GitHub Stars
4
First Seen
Jan 24, 2026
data-visualization — pluginagentmarketplace/custom-plugin-ai-data-scientist