Maintenance in progress: we are indexing a large batch of new skills. Some pages may load slowly or briefly show no results. Nothing is lost, and everything is back to normal within the hour.
Create and audit truthful, accessible, publication-ready scientific figures with Matplotlib, Seaborn, or Plotly. Use for figure design, multi-panel layouts, uncertainty and missing-data displays, color/contrast review, image metadata validation, and journal export planning.
Build figures that preserve scientific meaning before optimizing appearance. Separate universal principles from dated publisher rules, preserve raw data and transformations, use color redundantly, and inspect delivered files rather than trusting plotting defaults.
Non-negotiable guardrails
Never alter, hide, invent, or selectively enhance data to improve a figure.
Preserve raw tables/images, exclusions, missing-value codes, analysis code, normalization, binning, image adjustments, and random seeds.
Do not infer journal requirements. Identify the exact journal, article type, figure type, and submission phase; verify its live official guidance.
Do not claim that a palette, DPI value, format, or automated report makes a figure accessible or journal-compliant.
Do not silently connect missing observations, suppress inconvenient points, upsample images as if detail increased, or tune axes/dual axes to exaggerate a conclusion.
Keep interactive and static outputs as distinct deliverables. Interactive hover is not a substitute for labels, alt text, keyboard access, an accessible data table, or a static fallback.
Read references/publication_guidelines.md for deceptive-encoding and integrity checks. Read references/journal_requirements.md only after the target and phase are known.
Workflow
1. Define the evidence and destination
Record:
audience and medium: manuscript, web, slide, poster, supplement;
exact publisher/journal, article type, submission phase, and intended final width;
source-data paths/identifiers and output provenance.
If requirements are not known, create a provisional general figure and label all publisher choices as pending verification.
2. Choose an honest encoding
Prefer position on a common scale. Before coding, check:
Bars/areas: normally include zero because length/area is measured from a baseline.
Points/lines: nonzero limits can be valid; show context and disclose breaks.
Uncertainty: name SD, SE, CI, percentile, posterior, or another interval; state n and the unit of replication.
Raw observations: show them when feasible; do not let jitter obscure categories/values.
Missing data: distinguish missing, zero, censored, and excluded; use gaps or explicit model/interpolation styling.
Area/volume: scale area/volume, not radius/diameter; avoid decorative 3D.
Log axes: label the base/transform and declare how zero/negative values are handled.
Binning/smoothing: record edges, bandwidth/window, method, and sensitivity.
Normalization: state formula/reference and keep limits consistent across compared panels.
Dual axes: prefer aligned panels; if unavoidable, justify units and do not engineer apparent correlation.
Images: preserve originals, disclose whole-image adjustments, show scale bars, and avoid clipped/erased background.
3. Design accessibility in, not after
Use color plus marker, line style, hatching, direct label, or panel separation.
Choose qualitative, sequential, diverging, or cyclic color according to data semantics.
Audit foreground/background contrast at the rendered size.
Make missing and out-of-range values explicit.
Provide alt text, a longer description for complex figures, and underlying data for web delivery.
Treat WCAG 2.2 as web guidance: 4.5:1 normal text, 3:1 large text, and 3:1 for graphical objects required for understanding; color cannot be the only cue. Applicability and exceptions matter.
See references/color_palettes.md. A grayscale screen is useful but is not a complete color-vision or accessibility test.
4. Implement with scoped styles
Use Matplotlib's object-oriented API and temporary style contexts:
import matplotlib.pyplot as plt
from style_presets import style_context
with style_context("default", palette_name="okabe_ito_on_white"):
fig, ax = plt.subplots(
figsize=(89 / 25.4, 60 / 25.4),
layout="constrained",
)
ax.plot(x, y, marker="o", label="Observed")
ax.set(xlabel="Time (hours)", ylabel="Response (unit)")
ax.legend()
layout="constrained" supports colorbars, nested GridSpec, subfigures, and subplot_mosaic. Do not call tight_layout() afterward; it disables constrained layout.
For exact physical dimensions, do not use bbox_inches="tight" unless the changed page size is intentional.
Axes-level functions fit custom Matplotlib layouts; figure-level functions create their own figures/facets. Do not customize Seaborn's internal artist lists as if they were stable API.
Plotly
Use write_html() for interaction and write_image()/plotly.io.write_images() for static output.
Kaleido 1.3.0 requires Chrome/Chromium; it no longer bundles Chrome.
Current static formats: PNG, JPEG, WebP, SVG, PDF. EPS is Kaleido v0-only.
Do not pass deprecated engine= or use Orca/plotly.io.kaleido.scope.
width, height, and scale control pixels; scale=3 is not inherently “300 DPI.”
WebGL traces embed raster content in PDF/SVG.
Fully offline exports need local external assets when a figure references MathJax/topojson/tiles.
The exporter refuses implicit overwrite, writes atomically, keeps vector DPI for embedded rasters, uses TIFF LZW, and can use PDF/PS Type 42 fonts. It does not validate scientific content or publisher acceptance.
For editable fonts:
PDF/PS Type 42 embeds TrueType fonts.
svg.fonttype="none" keeps text editable/searchable but does not embed fonts; appearance depends on installed fonts.
svg.fonttype="path" preserves glyph appearance as paths but loses editable/searchable text.
Use an opaque explicit background unless transparency is required; blending against another background changes apparent contrast.
6. Inspect, compare, and review
Inspect file metadata.
Audit palette contrast/grayscale separation.
Compare against a dated publisher snapshot.
View at final size in the manuscript/web context.
Manually review fonts, embedded rasters, clipping, legends, scale bars, image integrity, caption, alt text, and source data.
Re-check the live target-journal page immediately before upload.
Pinned snapshot
The examples and smoke tests use direct package pins current on 2026-07-23:
This is a dated direct-dependency snapshot, not a transitive lock. Use the project's uv lock for exact replay; this skill intentionally ships no dependency lock.
Bundled CLIs
All helpers are deterministic, network-free, bounded, reject symlink inputs/destinations where relevant, and refuse overwrite unless --force is explicit.
Supports raster images (Pillow), SVG, PDF (pypdf), and EPS/PS. Reports dimensions, DPI/effective DPI, mode, alpha, ICC presence, compression, page size, and conservative first-page PDF font resources. It does not inspect every embedded raster in a vector container.
1---2name: scientific-visualization3description: Create and audit truthful, accessible, publication-ready scientific figures with Matplotlib, Seaborn, or Plotly. Use for figure design, multi-panel layouts, uncertainty and missing-data displays, color/contrast review, image metadata validation, and journal export planning.4---567# Scientific Visualization89Build figures that preserve scientific meaning before optimizing appearance. Separate universal principles from dated publisher rules, preserve raw data and transformations, use color redundantly, and inspect delivered files rather than trusting plotting defaults.1011## Non-negotiable guardrails1213- Never alter, hide, invent, or selectively enhance data to improve a figure.14- Preserve raw tables/images, exclusions, missing-value codes, analysis code, normalization, binning, image adjustments, and random seeds.15- Do not infer journal requirements. Identify the exact journal, article type, figure type, and submission phase; verify its live official guidance.16- Do not claim that a palette, DPI value, format, or automated report makes a figure accessible or journal-compliant.17- Do not silently connect missing observations, suppress inconvenient points, upsample images as if detail increased, or tune axes/dual axes to exaggerate a conclusion.18- Keep interactive and static outputs as distinct deliverables. Interactive hover is not a substitute for labels, alt text, keyboard access, an accessible data table, or a static fallback.1920Read `references/publication_guidelines.md` for deceptive-encoding and integrity checks. Read `references/journal_requirements.md` only after the target and phase are known.2122## Workflow2324### 1. Define the evidence and destination2526Record:2728- audience and medium: manuscript, web, slide, poster, supplement;29- exact publisher/journal, article type, submission phase, and intended final width;30- variable semantics, units, sample/replicate structure, missing/censored values;31- estimator and uncertainty definition;32- transformations: filtering, aggregation, normalization, smoothing, bins, image processing;33- source-data paths/identifiers and output provenance.3435If requirements are not known, create a provisional general figure and label all publisher choices as pending verification.3637### 2. Choose an honest encoding3839Prefer position on a common scale. Before coding, check:4041- **Bars/areas:** normally include zero because length/area is measured from a baseline.42- **Points/lines:** nonzero limits can be valid; show context and disclose breaks.43- **Uncertainty:** name SD, SE, CI, percentile, posterior, or another interval; state `n` and the unit of replication.44- **Raw observations:** show them when feasible; do not let jitter obscure categories/values.45- **Missing data:** distinguish missing, zero, censored, and excluded; use gaps or explicit model/interpolation styling.46- **Area/volume:** scale area/volume, not radius/diameter; avoid decorative 3D.47- **Log axes:** label the base/transform and declare how zero/negative values are handled.48- **Binning/smoothing:** record edges, bandwidth/window, method, and sensitivity.49- **Normalization:** state formula/reference and keep limits consistent across compared panels.50- **Dual axes:** prefer aligned panels; if unavoidable, justify units and do not engineer apparent correlation.51- **Images:** preserve originals, disclose whole-image adjustments, show scale bars, and avoid clipped/erased background.5253### 3. Design accessibility in, not after5455- Use color plus marker, line style, hatching, direct label, or panel separation.56- Choose qualitative, sequential, diverging, or cyclic color according to data semantics.57- Audit foreground/background contrast at the rendered size.58- Make missing and out-of-range values explicit.59- Provide alt text, a longer description for complex figures, and underlying data for web delivery.60- Treat WCAG 2.2 as web guidance: 4.5:1 normal text, 3:1 large text, and 3:1 for graphical objects required for understanding; color cannot be the only cue. Applicability and exceptions matter.6162See `references/color_palettes.md`. A grayscale screen is useful but is not a complete color-vision or accessibility test.6364### 4. Implement with scoped styles6566Use Matplotlib's object-oriented API and temporary style contexts:6768```python69import matplotlib.pyplot as plt7071from style_presets import style_context7273with style_context("default", palette_name="okabe_ito_on_white"):74 fig, ax = plt.subplots(75 figsize=(89 / 25.4, 60 / 25.4),76 layout="constrained",77 )78 ax.plot(x, y, marker="o", label="Observed")79 ax.set(xlabel="Time (hours)", ylabel="Response (unit)")80 ax.legend()81```8283`layout="constrained"` supports colorbars, nested GridSpec, subfigures, and `subplot_mosaic`. Do not call `tight_layout()` afterward; it disables constrained layout.8485For exact physical dimensions, do not use `bbox_inches="tight"` unless the changed page size is intentional.8687#### Color normalization8889```python90import matplotlib as mpl9192norm = mpl.colors.TwoSlopeNorm(vmin=-2, vcenter=0, vmax=5)93cmap = mpl.colormaps["RdBu_r"].with_extremes(bad="#777777")94image = ax.imshow(values, norm=norm, cmap=cmap, interpolation="nearest")95fig.colorbar(image, ax=ax, label="Change (unit)")96```9798Use `LogNorm`, `CenteredNorm`, `SymLogNorm`, `BoundaryNorm`, or `TwoSlopeNorm` only when its mapping matches the scientific meaning.99100#### Seaborn101102Seaborn 0.13.2 uses the current `errorbar` API:103104```python105sns.lineplot(106 data=frame,107 x="time",108 y="response",109 hue="treatment",110 style="treatment",111 markers=True,112 errorbar=("ci", 95),113 n_boot=5000,114 seed=20260723,115 ax=ax,116)117```118119Axes-level functions fit custom Matplotlib layouts; figure-level functions create their own figures/facets. Do not customize Seaborn's internal artist lists as if they were stable API.120121#### Plotly122123- Use `write_html()` for interaction and `write_image()`/`plotly.io.write_images()` for static output.124- Kaleido 1.3.0 requires Chrome/Chromium; it no longer bundles Chrome.125- Current static formats: PNG, JPEG, WebP, SVG, PDF. EPS is Kaleido v0-only.126- Do not pass deprecated `engine=` or use Orca/`plotly.io.kaleido.scope`.127- `width`, `height`, and `scale` control pixels; `scale=3` is not inherently “300 DPI.”128- WebGL traces embed raster content in PDF/SVG.129- Fully offline exports need local external assets when a figure references MathJax/topojson/tiles.130131### 5. Export explicitly and record provenance132133```python134from figure_export import export_figure135136report = export_figure(137 fig,138 "outputs/figure1",139 formats=["pdf", "png"],140 dpi=600,141 bbox_inches=None, # preserve figure page dimensions142 provenance={143 "raw_data": "data/source.csv",144 "transformations": ["predeclared QC filter", "group mean"],145 "uncertainty": "95% bootstrap CI; seed 20260723",146 "missing_data": "retained as gaps",147 },148 write_manifest=True,149)150```151152The exporter refuses implicit overwrite, writes atomically, keeps vector DPI for embedded rasters, uses TIFF LZW, and can use PDF/PS Type 42 fonts. It does not validate scientific content or publisher acceptance.153154For editable fonts:155156- PDF/PS Type 42 embeds TrueType fonts.157- `svg.fonttype="none"` keeps text editable/searchable but does not embed fonts; appearance depends on installed fonts.158- `svg.fonttype="path"` preserves glyph appearance as paths but loses editable/searchable text.159160Use an opaque explicit background unless transparency is required; blending against another background changes apparent contrast.161162### 6. Inspect, compare, and review1631641. Inspect file metadata.1652. Audit palette contrast/grayscale separation.1663. Compare against a dated publisher snapshot.1674. View at final size in the manuscript/web context.1685. Manually review fonts, embedded rasters, clipping, legends, scale bars, image integrity, caption, alt text, and source data.1696. Re-check the live target-journal page immediately before upload.170171## Pinned snapshot172173The examples and smoke tests use direct package pins current on 2026-07-23:174175```bash176uv run --isolated --no-project --python 3.13 \177 --with "matplotlib==3.11.1" \178 --with "seaborn==0.13.2" \179 --with "plotly==6.9.0" \180 --with "kaleido==1.3.0" \181 --with "pillow==12.3.0" \182 --with "pypdf==6.14.2" \183 python your_figure.py184```185186This is a dated direct-dependency snapshot, not a transitive lock. Use the project's uv lock for exact replay; this skill intentionally ships no dependency lock.187188## Bundled CLIs189190All helpers are deterministic, network-free, bounded, reject symlink inputs/destinations where relevant, and refuse overwrite unless `--force` is explicit.191192### Inspect raster/vector metadata193194```bash195uv run --isolated --no-project --python 3.13 \196 --with "pillow==12.3.0" \197 python scripts/image_metadata.py figure.tiff \198 --format tiff --mode RGB --min-dpi 300 --target-width-mm 85 \199 --alpha-policy forbid200```201202Supports raster images (Pillow), SVG, PDF (pypdf), and EPS/PS. Reports dimensions, DPI/effective DPI, mode, alpha, ICC presence, compression, page size, and conservative first-page PDF font resources. It does not inspect every embedded raster in a vector container.203204### Audit palette contrast and grayscale205206```bash207uv run --isolated --no-project --python 3.13 \208 python scripts/palette_audit.py \209 --palette okabe_ito_on_white \210 --background FFFFFF \211 --role graphical212```213214Reports exact WCAG sRGB contrast plus pairwise CIE L* grayscale screening. The grayscale threshold is a heuristic, not a standard.215216### Plan/screen publisher export217218```bash219uv run --isolated --no-project --python 3.13 \220 python scripts/export_plan.py \221 --publisher nature \222 --figure-type combination \223 --width single \224 --phase final225```226227Add `--input figure.pdf` to screen machine-readable properties. Profiles are official-source snapshots accessed 2026-07-23, not automatic compliance rules.228229### Preview styles230231```bash232uv run --isolated --no-project --python 3.13 \233 --with "matplotlib==3.11.1" \234 python scripts/style_preview.py \235 --output outputs/style-preview \236 --style default \237 --palette okabe_ito_on_white \238 --formats png,svg239```240241### Inspect/write styles and smoke-test export242243```bash244uv run --isolated --no-project --python 3.13 \245 python scripts/style_presets.py --list246uv run --isolated --no-project --python 3.13 \247 python scripts/style_presets.py --show nature248uv run --isolated --no-project --python 3.13 \249 --with "matplotlib==3.11.1" \250 python scripts/figure_export.py --demo outputs/export-smoke --manifest251```252253## Assets254255- `assets/publication.mplstyle`: general print starting point.256- `assets/nature.mplstyle`: dated flagship Nature visual starting point, not a compliance preset.257- `assets/presentation.mplstyle`: larger projected-display style.258- `assets/color_palettes.py`: importable Okabe-Ito and Paul Tol values with metadata.259- `assets/publisher_profiles.json`: dated, machine-readable planning snapshots.260261Matplotlib style files omit `#` in hex colors because `#` begins comments in `.mplstyle` parsing.262263## References264265- `references/publication_guidelines.md`: integrity, deceptive encodings, accessibility, static/interactive output.266- `references/color_palettes.md`: palette semantics, exact values, WCAG contrast, grayscale caveats, color management.267- `references/journal_requirements.md`: phase-specific official publisher snapshots.268- `references/matplotlib_examples.md`: current, runnable Matplotlib/Seaborn/Plotly patterns.269- `references/sources.md`: official URLs, dates, versions, and research basis.270271## Final review checklist272273- [ ] Raw data/images and transformation code are preserved.274- [ ] Missing values, exclusions, bins, normalization, and uncertainty are explicit.275- [ ] Baselines, scales, limits, and area/volume encodings are honest.276- [ ] Color is redundant and rendered contrast was reviewed.277- [ ] Figure has an accessible description/data alternative where applicable.278- [ ] Physical dimensions, DPI, format, fonts, transparency, and file size were inspected after export.279- [ ] Publisher rules were verified for the exact journal and phase.280- [ ] No automated report is presented as a scientific, accessibility, or compliance certification.281282---283284**Source:** [`K-Dense-AI/scientific-agent-skills`](https://github.com/K-Dense-AI/scientific-agent-skills) → `skills/scientific-visualization/SKILL.md`
Run npx skillmds add thedixitjain/scientific-visualization in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Create and audit truthful, accessible, publication-ready scientific figures with Matplotlib, Seaborn, or Plotly. Use for figure design, multi-panel layouts, uncertainty and missing-data displays, color/contrast review, image metadata validation, and journal export planning. It is listed under Security on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: executes scripts, makes network calls. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
thedixitjain (@thedixitjain) published this skill. Their other Agent Skills are listed on their SkillMD profile.