Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create publication-quality charts and graphs for economics papers.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 46% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 1% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 71% | 0% |
| case-19 | ✓→✓ | = Same ✓ | 6% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 44% | 0% |
This skill creates publication-quality figures for economics papers, using clean styling, consistent scales, and export-ready formats.
Follow these steps to complete the task:
Before generating any code, ask the user:
Based on the context, generate code that:
After generating output:
r# ============================================ # 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)
ggplot2, scales, dplyrmatplotlib, seaborn (optional alternative)Other measured skills in the registry, with their headline benchmark lift.