bio-reporting-figure-export

Installation
SKILL.md

Publication-Ready Figure Export

Python (matplotlib)

import matplotlib.pyplot as plt

# Set publication defaults
plt.rcParams.update({
    'font.size': 8,
    'font.family': 'Arial',
    'axes.linewidth': 0.5,
    'lines.linewidth': 1,
    'figure.dpi': 300
})

fig, ax = plt.subplots(figsize=(3.5, 3))  # Single column width
# ... create plot ...
Installs
3
GitHub Stars
1.1K
First Seen
Jan 25, 2026
bio-reporting-figure-export — gptomics/bioskills