Chart Image Generator logo

Chart Image Generator

Community
wentorai
chart-image-generator

Generate publication-quality chart images from research data

Overview

Publisherwentorai
Repositoryresearch-plugins
Skill namechart-image-generator
Stars
294
Forks
42
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by wentorai on GitHub. Read the source before you install it.

Installation

Install the Chart Image Generator AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/wentorai/research-plugins.git /tmp/research-plugins
mkdir -p .claude/skills
cp -r /tmp/research-plugins/skills/analysis/dataviz/chart-image-generator .claude/skills/chart-image-generator
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Chart Image Generator in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Chart Image Generator on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Chart Image Generator is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Chart Image Generator

A skill for generating publication-quality chart images from research data using Python visualization libraries. Covers chart type selection, styling for academic journals, multi-panel layouts, color accessibility, and export at the correct resolution and format for submission.

Overview

Creating figures for academic publications requires more than just plotting data. Journals have specific requirements for resolution (typically 300-600 DPI), file format (TIFF, EPS, PDF, or high-resolution PNG), font sizes (often 8-12pt in the final printed figure), line weights, and color accessibility. This skill automates the production of figures that meet these standards, reducing the time researchers spend on manual formatting and ensuring consistency across all figures in a manuscript.

The skill supports common chart types used in academic research: scatter plots, bar charts, line plots, box plots, violin plots, heatmaps, forest plots, Kaplan-Meier curves, and multi-panel composite figures. All examples use matplotlib and seaborn with a custom academic styling configuration.

Academic Figure Styling

Journal-Ready Style Configuration

python
import matplotlib.pyplot as plt
import matplotlib as mpl

def set_academic_style():
    """
    Configure matplotlib for publication-quality figures.
    Matches common requirements for Nature, Science, PLOS, IEEE journals.
    """
    plt.rcParams.update({
        # Font settings
        'font.family': 'sans-serif',
        'font.sans-serif': ['Arial', 'Helvetica', 'DejaVu Sans'],
        'font.size': 8,
        'axes.titlesize': 9,
        'axes.labelsize': 8,
        'xtick.labelsize': 7,
        'ytick.labelsize': 7,
        'legend.fontsize': 7,

        # Line and marker settings
        'lines.linewidth': 1.0,
        'lines.markersize': 4,
        'axes.linewidth': 0.5,
        'xtick.major.width': 0.5,
        'ytick.major.width': 0.5,

        # Grid and background
        'axes.grid': False,
        'axes.facecolor': 'white',
        'figure.facecolor': 'white',

        # Legend
        'legend.frameon': False,
        'legend.borderpad': 0.3,

        # Save settings
        'savefig.dpi': 300,
        'savefig.bbox': 'tight',
        'savefig.pad_inches': 0.05,

        # Use Type 1 fonts for EPS/PDF (required by many journals)
        'pdf.fonttype': 42,
        'ps.fonttype': 42,
    })

# Common journal figure widths (in inches):
SINGLE_COLUMN = 3.5   # ~89mm (Nature, Science, PLOS)
DOUBLE_COLUMN = 7.0   # ~178mm
ONE_AND_HALF = 5.5    # ~140mm

Accessible Color Palettes

python
# Colorblind-safe palettes for academic figures
PALETTES = {
    'categorical_8': [
        '#332288', '#88CCEE', '#44AA99', '#117733',
        '#999933', '#DDCC77', '#CC6677', '#882255'
    ],  # Tol's qualitative palette

    'sequential': 'viridis',  # Perceptually uniform

    'diverging': 'RdBu_r',   # Red-Blue diverging

    'binary': ['#0072B2', '#D55E00'],  # Blue and vermilion
}

Chart Type Selection Guide

Data PatternRecommended ChartWhen to Use
Distribution of one variableHistogram, KDE, violinShowing data spread
Comparing groupsBox plot, violin, bar + error barsGroup differences
Two continuous variablesScatter plotCorrelation, regression
Trends over timeLine plotTime series, longitudinal
ProportionsStacked bar, pie (sparingly)Composition
Correlation matrixHeatmapMany variable pairs
Effect sizes + CIsForest plotMeta-analysis, multi-model
Survival dataKaplan-Meier curveTime-to-event

Generating Common Academic Charts

Scatter Plot with Regression Line

python
import numpy as np
import seaborn as sns

def scatter_with_regression(x, y, xlabel, ylabel, title, output_path,
                            groups=None, group_label=None):
    """
    Create a scatter plot with regression line and confidence interval.
    """
    set_academic_style()
    fig, ax = plt.subplots(figsize=(SINGLE_COLUMN, SINGLE_COLUMN * 0.8))

    if groups is not None:
        for group_val in sorted(set(groups)):
            mask = groups == group_val
            ax.scatter(x[mask], y[mask], s=15, alpha=0.7, label=group_val)
        ax.legend(title=group_label)
    else:
        ax.scatter(x, y, s=15, alpha=0.7, color=PALETTES['binary'][0])

    # Add regression line
    from scipy import stats
    slope, intercept, r, p, se = stats.linregress(x, y)
    x_line = np.linspace(x.min(), x.max(), 100)
    ax.plot(x_line, slope * x_line + intercept, color='#CC6677',
            linewidth=1.0, linestyle='--')

    # Annotate with statistics
    ax.text(0.05, 0.95, f'r = {r:.3f}\np = {p:.3f}',
            transform=ax.transAxes, verticalalignment='top', fontsize=7)

    ax.set_xlabel(xlabel)
    ax.set_ylabel(ylabel)
    ax.set_title(title)

    fig.savefig(output_path, dpi=300, bbox_inches='tight')
    plt.close(fig)
    return output_path

Multi-Panel Composite Figure

python
def create_multipanel_figure(panels: list, ncols: int = 2,
                              output_path: str = 'figure.pdf'):
    """
    Create a multi-panel figure with automatic panel labels (A, B, C, ...).

    Args:
        panels: List of dicts with 'plot_func', 'args', 'title'
        ncols: Number of columns
        output_path: Output file path
    """
    set_academic_style()
    nrows = int(np.ceil(len(panels) / ncols))
    fig, axes = plt.subplots(nrows, ncols,
                              figsize=(DOUBLE_COLUMN, 3.0 * nrows))
    axes = axes.flatten() if hasattr(axes, 'flatten') else [axes]

    for i, (ax, panel) in enumerate(zip(axes, panels)):
        panel['plot_func'](ax, **panel.get('args', {}))
        # Add panel label (A, B, C, ...)
        ax.text(-0.15, 1.08, chr(65 + i), transform=ax.transAxes,
                fontsize=11, fontweight='bold', va='top')
        if 'title' in panel:
            ax.set_title(panel['title'])

    # Hide unused panels
    for ax in axes[len(panels):]:
        ax.set_visible(False)

    fig.tight_layout()
    fig.savefig(output_path, dpi=300, bbox_inches='tight')
    plt.close(fig)
    return output_path

Export Specifications by Journal

Journal / PublisherFormatDPIMax WidthColor Mode
NatureTIFF, EPS, PDF300180mmRGB
ScienceEPS, PDF300174mmRGB
PLOSTIFF, EPS300174mmRGB
IEEEEPS, PDF, PNG3003.5in (1-col)RGB or CMYK
ElsevierTIFF, EPS, PDF300-600190mmRGB or CMYK
SpringerTIFF, EPS, PDF300174mmRGB or CMYK

Export Function

python
def export_figure(fig, basename: str, formats=('pdf', 'png', 'tiff'), dpi=300):
    """Export a figure in multiple formats for journal submission."""
    paths = []
    for fmt in formats:
        path = f"{basename}.{fmt}"
        fig.savefig(path, format=fmt, dpi=dpi, bbox_inches='tight',
                    facecolor='white', edgecolor='none')
        paths.append(path)
    return paths

Best Practices

  • Always use vector formats (PDF, EPS) for line art and plots; raster (TIFF, PNG) only when required.
  • Set figure dimensions to the exact column width of your target journal.
  • Use the same font and size across all figures in a manuscript for consistency.
  • Test figures in grayscale to ensure they remain readable without color.
  • Include all figure generation code in your supplementary materials for reproducibility.
  • Label axes with units (e.g., "Temperature (K)") and avoid abbreviations unless defined.

References

  • Rougier, N. P., Droettboom, M., & Borne, P. E. (2014). Ten Simple Rules for Better Figures. PLoS Computational Biology, 10(9).
  • Tufte, E. R. (2001). The Visual Display of Quantitative Information (2nd ed.). Graphics Press.
  • Wong, B. (2011). Color Blindness. Nature Methods, 8(6), 441.

Frequently asked questions

What does the Chart Image Generator AI skill do?

Generate publication-quality chart images from research data

Why use Chart Image Generator on TypingMind?

Because you install it once and use it with any model. Chart Image Generator is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Chart Image Generator in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/wentorai/research-plugins/tree/main/skills/analysis/dataviz/chart-image-generator. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Chart Image Generator?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Chart Image Generator?

As many as you like. As long as a model supports skills, you can use Chart Image Generator with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Chart Image Generator AI skill free?

Yes. It is published on GitHub by wentorai under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇