d3-data-visualization

작성자: openai

D3로 맞춤형 데이터 시각화를 구축합니다. 사용자가 SVG 또는 DOM 기반 차트, 풍부한 주석, 도메인 네이티브 컨텍스트 배경, 데이터 조인 등이 필요할 때 사용하세요.

npx skills add https://github.com/openai/plugins --skill d3-data-visualization

D3 Data Visualization

Overview

Use this skill for custom browser visualizations where SVG or DOM semantics matter and a declarative grammar no longer fits cleanly. D3 is strongest when the chart needs bespoke scales, marks, layouts, transitions, zooming, brushing, annotations, or vector export.

Default assumption: use D3 for scales, layouts, geometry, labels, annotation layers, and behavior. Do not turn D3 into the entire application architecture if a framework already owns the surrounding UI.

Choose D3 When

  • the chart needs custom marks or nonstandard layouts
  • SVG quality matters for export, print, or accessibility
  • annotation and labeling are part of the design, not an afterthought
  • the visualization needs custom vector background geometry such as a field, court, track, floor plan, schematic, or other meaningful contextual surface
  • an editorial story needs data-bound generated cutouts, illustrated substrates, scrollytelling/parallax states, or animated annotation reveals in SVG
  • the mark count is moderate enough for DOM or SVG
  • the interaction model needs zoom, brush, drag, or coordinated views
  • a UML-like, dependency, architecture, state, or flow diagram needs bespoke SVG annotation or product-specific composition after ../uml-and-software-architecture-visualization/SKILL.md has defined the diagram semantics
  • a declarative grammar would become harder to read than the resulting D3 code

Avoid D3-First DOM Rendering When

  • mark counts are so large that DOM throughput becomes the bottleneck
  • animation is continuous and frame budgets are tight
  • the task would be faster to solve with Canvas2D or WebGL

Working Pattern

  1. Build a clean data model first.
  2. Separate:
    • parsing and normalization
    • scale construction
    • derived geometry
    • rendering
    • interaction state
  3. Prefer stable keys in joins.
  4. Use D3 for math and behavior, not for hiding weak state management.
  5. Assess how many D3 instances may coexist on the page so DOM, layout, and event costs are evaluated at dashboard scale.
  6. If using a contextual surface, keep source units and render scales explicit, draw the background as a separate layer, and adapt mark placement or layout forces to the domain geometry.
  7. For art-directed stories, keep generated image, substrate, data-mark, label, and annotation layers separate so each can be reviewed and exported.
  8. Keep annotations and interaction overlays explicit.
  9. For SVG output, apply ./references/svg-polish-and-crispness.md before calling the chart finished. Explicitly set font sizes, tick padding, gridline strokes, data stroke widths, icon sizes, label alignment, and zoom-stable stroke behavior.
  10. For browser-facing work, use ../../references/foundations/mobile-first-responsive-visualization.md so the D3 layout is recomputed for large-screen and mobile states rather than scaled down from one desktop SVG.

Editorial Defaults

  • Build an explicit label layer. Direct end labels, inline keys, or panel labels should be considered before a detached legend.
  • Build an explicit annotation layer. Callouts should attach to data points, ranges, thresholds, or domain geometry rather than floating as decoration.
  • Keep gridlines, axes, and reference marks quiet. Most ink should be data, labels, or annotation.
  • Default SVG chart polish: 10-12 px axis ticks, 11-13.5 px direct labels, 0.5-1 px non-data strokes, 1.5-2.25 px normal data lines, 2.5-3 px focus lines, short 4-6 px ticks, and no heavy chart border unless it carries meaning.
  • Use D3 axes as geometry generators, then style them. Prefer .tickSizeOuter(0), 6-8 px tick padding, quiet gridlines, removed domains when redundant, and fewer ticks before rotated or tiny labels.
  • Use shape-rendering: crispEdges for straight axes, gridlines, and rectangular cells; do not apply it globally to curves, symbols, circles, or diagonal marks.
  • Use vector-effect: non-scaling-stroke for zoomable outlines, axes, annotation connectors, map borders, and icons that should keep screen-stable stroke weight.
  • Use custom layout only when the story needs it; do not copy a publication's composition or visual identity.
  • For narrow widths, provide either a simplified mark layout, small-multiple stack, or numbered annotation key below the chart.
  • On mobile, make tap/focus the inspection path, enlarge hit areas beyond visible marks, provide drag alternatives, define pinch or zoom ownership, and keep the main chart visible when filters or settings open.
  • Favor inspectable SVG for editorial charts that need export, accessibility, and precise labels. Move dense mark fields to Canvas only when the DOM count justifies it.
  • For scrollytelling or parallax, use ../scrollytelling-and-parallax-data-visualization/SKILL.md for the scroll narrative, then let D3 own scales, derived geometry, data joins, labels, and SVG transitions. Keep each scene valid as a still.
  • For generated imagery, use D3/SVG for labels, anchors, masks, clipping, and data overlays rather than baking numbers into images.
  • For motion, use transitions to reveal sequence, direction, accumulation, comparison, or mechanism. Respect reduced-motion with final-state rendering.
  • For 3D-looking SVG, avoid perspective distortion unless it represents a real multiaxis surface; label axes and provide a flat fallback when needed.

Core D3 Building Blocks

  • d3-array for grouping, extent, ticks, and summaries
  • d3-scale for position, color, and size mappings
  • d3-axis for readable axes
  • d3-shape for lines, areas, arcs, and symbol generation
  • d3-selection and d3-transition for DOM behavior
  • d3-brush, d3-zoom, and d3-drag for direct manipulation
  • d3-force, d3-hierarchy, d3-contour, and other layouts only when their data structure fits

Integration Rules

  • In React or another UI framework, prefer framework-owned structure and D3-owned geometry, scales, and behaviors.
  • For highly custom charts, a small imperative D3 island is fine if the boundary is clear.
  • Keep responsive behavior tied to container measurements, not magic constants.
  • Recompute labels, tick counts, annotation placement, collision rules, and plot height for mobile portrait and optional landscape sizes; do not only resize the outer viewBox.
  • Prefer SVG for labels and annotations even in hybrid systems.
  • Keep contextual background layers non-interactive unless they are part of selection, zoom, or hit testing.
  • Move to Canvas or WebGL when DOM count or continuous redraw becomes the limiting factor.

Output Expectations

  • Explain why D3 is the right rendering layer.
  • Keep chart structure semantic and inspectable.
  • Provide export paths for SVG or PNG when needed.
  • Pair interaction with obvious annotation and reset controls.
  • For mobile, state the touch target policy, hover replacement, drag/pinch ownership, and how the on-screen keyboard or settings panels return the user to the chart.
  • When drawing a contextual surface, state the source geometry and how data marks are positioned, constrained, or biased by it.
  • For image-supported editorial work, state which assets are generated, which layers remain data-bound, and how labels anchor to the substrate.
  • For animation, state the verb, scene states, duration budget, and reduced-motion fallback.
  • For new work, include a technical design section covering simultaneous instance count, DOM and interaction cost, and maintenance tradeoffs versus declarative or Canvas-based alternatives.

References

  • Shared theory:
    • ../../references/foundations/editorial-infographic-system.md
    • ../../references/foundations/art-directed-interactive-visual-stories.md
    • ../../references/foundations/perception-color-and-encoding.md
    • ../../references/foundations/mobile-first-responsive-visualization.md
    • ../../references/foundations/domain-contextual-surfaces.md
    • ../../references/foundations/storytelling-annotation-and-critique.md
    • ../../references/foundations/implementation-design-and-tradeoffs.md
  • Skill references:
    • ./references/d3-module-map.md
    • ./references/d3-architecture-patterns.md
    • ./references/d3-interaction-and-annotation.md
    • ./references/d3-pitfalls-and-scale-limits.md
    • ./references/svg-polish-and-crispness.md
    • ../uml-and-software-architecture-visualization/SKILL.md
    • ../scrollytelling-and-parallax-data-visualization/SKILL.md

Representative Prompts

  • "Build a D3 slopegraph with direct labels."
  • "Add zoom and brushing to this scatterplot."
  • "Create a publication-quality SVG chart from this dataset."
  • "Draw a domain-accurate soccer pitch behind a player network and bias node positions by role."
  • "Refactor this D3 chart so React owns layout and D3 owns math."
  • "Animate this D3 chart through scrollytelling scene states."
  • "Tell me when this D3 chart should move to Canvas."

openai의 다른 스킬

user-context
openai
데이터 분석 플러그인의 지속적인 소스 라우팅 기본 설정, 온보딩 로직, 설정 진행 상황 및 의미 계층 레지스트리를 로드하거나 관리합니다.
official
notion-research-documentation
openai
Notion 콘텐츠를 조사하고 인용문과 함께 구조화된 브리핑, 보고서 또는 비교 자료로 종합합니다. 대상 질의를 사용해 Notion 페이지를 검색하고 가져온 후, 인라인 출처 인용과 참고 문헌 섹션을 포함해 주제별로 결과를 정리합니다. 범위와 사용자 목표에 따라 네 가지 출력 형식(빠른 브리핑, 연구 요약, 비교, 종합 보고서) 중에서 선택합니다. 내장 템플릿을 사용해 Notion 페이지를 생성 및 업데이트하고, 새 정보가 도착하면 출처를 직접 연결하고 변경 사항을 추적합니다...
official
rcsb-pdb-skill
openai
핵심 메타데이터, Search API 쿼리 및 FASTA 다운로드를 위한 간결한 RCSB PDB 요청을 제출합니다. 사용자가 간결한 RCSB 요약을 원할 때 사용하며, 원시 JSON 또는…을 저장합니다.
official
pdf
openai
PDF 읽기, 생성 및 검증 기능을 제공하며, 시각적 렌더링과 프로그래매틱 생성을 지원합니다. Poppler(pdftoppm)를 사용하여 PDF 페이지를 PNG로 렌더링하여 레이아웃, 간격, 타이포그래피를 시각적으로 검사할 수 있습니다. reportlab을 사용하여 프로그래매틱 방식으로 PDF를 생성하여 안정적인 포맷을 보장하며, pdfplumber 또는 pypdf를 통해 텍스트와 메타데이터를 추출합니다. 품질 기준을 준수합니다: 잘린 텍스트, 겹치는 요소, 깨진 표, 렌더링 아티팩트가 없어야 하며, ASCII 하이픈만 사용하고 사람이 읽을 수 있는 인용을 사용합니다.
official
test-coverage-improver
openai
Improve test coverage in the OpenAI Agents JS monorepo: run `pnpm test:coverage`, inspect coverage artifacts, identify low-coverage files and branches, propose…
official
playwright
openai
터미널 기반 브라우저 자동화로 요소 스냅샷 및 대화형 UI 워크플로우 지원. playwright-cli 래퍼 스크립트를 통해 작동하며(npx 필요), 헤드리스 및 헤드 모드 모두 지원하여 시각적 디버깅 가능. 핵심 워크플로우: 페이지 열기, 안정적인 요소 참조를 위한 스냅샷 생성, 참조를 사용한 상호작용, 탐색 또는 DOM 변경 후 재스냅샷. 양식 작성, 클릭, 타이핑, 다중 탭 관리, 스크린샷/PDF 캡처, 흐름 디버깅을 위한 트레이스 기록 포함. 요소 참조(예: e3, e15)...
official
ukb-topmed-phewas-skill
openai
단일 변이에 대한 간결한 UKB-TOPMed PheWAS 요약을 가져오며, rsID, GRCh37 또는 GRCh38 입력을 받아 필요한 GRCh38 쿼리로 변환합니다. 다음과 같은 경우에 사용하세요…
official
code-review-context
openai
모델 가시 컨텍스트
official