Skip to content
Skillv1.0.0

econ-visualization

Create publication-quality charts and graphs for economics papers.

by meleantonio(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from meleantonio/awesome-econ-ai-stuff (_skills/communication/econ-visualization/SKILL.md). Install upstream with npx skills add meleantonio/awesome-econ-ai-stuff --skill econ-visualization. Copyright stays with the author.

Econ Visualization

Purpose

This skill creates publication-quality figures for economics papers, using clean styling, consistent scales, and export-ready formats.

When to Use

  • Building figures for empirical results and descriptive analysis
  • Standardizing chart style across a paper or presentation
  • Exporting figures to PDF or PNG at journal quality

Instructions

Follow these steps to complete the task:

Step 1: Understand the Context

Before generating any code, ask the user:

  • What is the dataset and key variables?
  • What chart type is needed (line, bar, scatter, event study)?
  • What output format and size are required?

Step 2: Generate the Output

Based on the context, generate code that:

  1. Uses a consistent theme for academic styling
  2. Labels axes and legends clearly
  3. Exports figures at high resolution
  4. Includes reproducible steps for data preparation

Step 3: Verify and Explain

After generating output:

  • Explain how to regenerate or update the plot
  • Suggest alternatives (log scales, faceting, smoothing)
  • Note any data transformations used

Example Prompts

  • "Create an event study plot with confidence intervals"
  • "Plot GDP per capita over time for three countries"
  • "Build a scatter plot with fitted regression line"

Example Output

# ============================================
# Publication-Quality Figure in R
# ============================================
library(tidyverse)

df <- read_csv("data.csv")

ggplot(df, aes(x = year, y = gdp_per_capita, color = country)) +
  geom_line(size = 1) +
  scale_y_continuous(labels = scales::comma) +
  labs(
    title = "GDP per Capita Over Time",
    x = "Year",
    y = "GDP per Capita (USD)",
    color = "Country"
  ) +
  theme_minimal(base_size = 12) +
  theme(
    legend.position = "bottom",
    panel.grid.minor = element_blank()
  )

ggsave("figures/gdp_per_capita.pdf", width = 7, height = 4, dpi = 300)

Requirements

Software

  • R 4.0+ or Python 3.10+

Packages

  • For R: ggplot2, scales, dplyr
  • For Python: matplotlib, seaborn (optional alternative)

Best Practices

  1. Use vector formats (PDF, SVG) for publication
  2. Keep labels concise and readable
  3. Document data filters used in the figure

Common Pitfalls

  • Overcrowded plots without clear labeling
  • Inconsistent scales across figures
  • Exporting low-resolution images

References

Changelog

v1.0.0

  • Initial release

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/meleantonio-awesome-econ-ai-stuff-econ-visualization/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

meleantonio-awesome-econ-ai-stuff-econ-visualization.ocm.jsonjson
{
  "ocm": "1",
  "id": "meleantonio-awesome-econ-ai-stuff-econ-visualization",
  "kind": "skill",
  "name": "econ-visualization",
  "description": "Create publication-quality charts and graphs for economics papers.",
  "publisher": "meleantonio",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "visualization",
      "ggplot2",
      "charts",
      "publication",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Create publication-quality charts and graphs for economics papers."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/meleantonio/awesome-econ-ai-stuff",
      "path": "_skills/communication/econ-visualization/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/meleantonio/awesome-econ-ai-stuff/blob/HEAD/_skills/communication/econ-visualization/SKILL.md",
      "key": "meleantonio/awesome-econ-ai-stuff/_skills/communication/econ-visualization/SKILL.md"
    },
    "compatibility": "['claude-code', 'cursor', 'codex', 'gemini-cli']"
  },
  "instructions": "# Econ Visualization\n\n## Purpose\n\nThis skill creates publication-quality figures for economics papers, using clean styling, consistent scales, and export-ready formats.\n\n## When to Use\n\n- Building figures for empirical results and descriptive analysis\n- Standardizing chart style across a paper or presentation\n- Exporting figures to PDF or PNG at journal quality\n\n## Instructions\n\nFollow these steps to complete the task:\n\n### Step 1: Understand the Context\n\nBefore generating any code, ask the user:\n\n- What is the dataset and key variables?\n- What chart type is needed (line, bar, scatter, event s",
  "cost": {
    "context_tokens": 663
  }
}

Fetch it by URL: GET /api/v1/registry/meleantonio-awesome-econ-ai-stuff-econ-visualization/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.