#!/bin/bash # 一键分析和绘图脚本 echo "==================================" echo "🔍 Circle Packing Results Analyzer" echo "==================================" echo "" # 进入项目根目录 cd "$(dirname "$0")/.." echo "📊 Step 1: Analyzing results..." echo "" uv run python my/analyze_latest_results.py echo "" echo "==================================" echo "🎨 Step 2: Creating plots..." echo "==================================" echo "" uv run python my/plot_latest_results.py echo "" echo "==================================" echo "✅ Analysis Complete!" echo "==================================" echo "" echo "📁 Results:" echo " • Report: my/LATEST_EXPERIMENT_REPORT.md" echo " • JSON: my/latest_comparison_results.json" echo " • Plots: my/plots_latest/" echo "" echo "🖼️ View plots:" echo " open my/plots_latest/*.png" echo "" echo "📖 Read report:" echo " cat my/LATEST_EXPERIMENT_REPORT.md" echo ""