Marketplace data-analysis

A skill for analyzing data using Python (pandas) and generating professional visualizations (matplotlib/seaborn).

install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bohuyeshan-apb/data-analysis" ~/.claude/skills/aiskillstore-marketplace-data-analysis-0f241c && rm -rf "$T"
manifest: skills/bohuyeshan-apb/data-analysis/SKILL.md
source content

Data Analysis & Visualization Skill

This skill empowers the agent to perform data analysis and generate visualizations using Python libraries. It is designed to be used in conjunction with a sandbox environment.

Capabilities

1. Data Processing

  • Pandas: Clean, filter, and aggregate data.
  • NumPy: Numerical computations.

2. Visualization

  • Matplotlib/Seaborn: Generate high-quality charts (bar, line, scatter, pie, heatmap).
  • Theme Matching: Apply color palettes consistent with the document theme.

Usage

The skill provides utility functions to generate Python code that can be executed in the sandbox.

Scripts

  • code_generator.py
    : Generates Python scripts for analysis and plotting.
  • visualizer.py
    : Helper library (injected into sandbox) to ensure consistent styling.

Dependencies (Sandbox Environment)

  • pandas
  • numpy
  • matplotlib
  • seaborn