Summary
Migrate scitex.plt utility modules to figrecipe to maintain single source of truth.
Background
figrecipe is now the canonical source for:
However, scitex.plt still contains utility modules that should live in figrecipe:
scitex/plt/
├── color/ # Color conversion, palettes, gradients
├── styles/ # Publication style presets
├── ax/ # Axis formatting utilities
├── utils/ # General plotting utilities
├── _subplots/ # Subplot management
├── io/ # Figure I/O
Proposed Migration
Phase 1: Color utilities
Phase 2: Style utilities
Phase 3: Axis utilities
Phase 4: General utilities
Phase 5: Cleanup
Benefits
- Single source of truth for all plotting functionality
- Reduced code duplication
- Clearer separation: scitex = scientific workflow, figrecipe = plotting
Related
🤖 Generated with Claude Code
Summary
Migrate scitex.plt utility modules to figrecipe to maintain single source of truth.
Background
figrecipe is now the canonical source for:
However, scitex.plt still contains utility modules that should live in figrecipe:
Proposed Migration
Phase 1: Color utilities
scitex.plt.color→figrecipe.colorstr2rgb,rgb2rgba,rgba2hex,gradiate_color_rgb, etc.Phase 2: Style utilities
scitex.plt.styles→figrecipe.styles(extend existing)Phase 3: Axis utilities
scitex.plt.ax→figrecipe.axesPhase 4: General utilities
scitex.plt.utils→figrecipe.utilsscitex.plt.io→figrecipe.ioPhase 5: Cleanup
Benefits
Related
🤖 Generated with Claude Code