## BarChart: Model Accuracy Comparison Across Metrics
### Overview
The chart compares the accuracy of three models (None, RAG, KG-RAG) across two evaluation metrics: **Maj@8** and **Last@8**. Accuracy is measured on a percentage scale from 0% to 60%. The KG-RAG model consistently outperforms the other two models in both metrics.
### Components/Axes
- **X-axis (Metrics)**:
- **Maj@8** (leftmost group)
- **Last@8** (rightmost group)
- **Y-axis (Accuracy)**:
- Scale: 0% to 60% in 10% increments
- Labels: "%" symbol
- **Legend**:
- Position: Top-left corner
- Colors:
- **Blue**: None
- **Orange**: RAG
- **Green**: KG-RAG
- **Bars**:
- Grouped by metric, with three bars per group (one per model)
- Bar heights correspond to accuracy percentages
### Detailed Analysis
- **Maj@8**:
- **None**: ~50% (blue bar)
- **RAG**: ~52% (orange bar)
- **KG-RAG**: ~54% (green bar)
- **Last@8**:
- **None**: ~44% (blue bar)
- **RAG**: ~45% (orange bar)
- **KG-RAG**: ~51% (green bar)
### Key Observations
1. **KG-RAG Dominance**:
- Outperforms other models by ~2-4% in both metrics.
- Largest gap in **Maj@8** (54% vs. 50% for None).
2. **Metric-Specific Trends**:
- **Maj@8** accuracies are consistently higher than **Last@8** for all models.
- **KG-RAG** maintains a ~6% advantage over RAG in **Last@8**.
3. **Model Improvements**:
- RAG improves over None by ~2% in **Maj@8** and ~1% in **Last@8**.
- KG-RAG adds ~2% over RAG in **Maj@8** and ~6% in **Last@8**.
### Interpretation
The data demonstrates that integrating knowledge graphs (KG-RAG) significantly enhances model performance, particularly in later positions (**Last@8**). The smaller accuracy gap between RAG and None in **Last@8** suggests that RAG's improvements are more pronounced in earlier positions. The consistent outperformance of KG-RAG implies that knowledge graph augmentation provides robust benefits across evaluation scenarios. The ~10% drop in accuracy from **Maj@8** to **Last@8** for all models highlights challenges in maintaining performance at later positions, where KG-RAG's advantage becomes most critical.