> ## Documentation Index
> Fetch the complete documentation index at: https://shubham-0fd31468.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Progress Tracking

> Monitor your learning progress with detailed analytics and insights

## Overview

FlashMind provides comprehensive progress tracking to help you understand your learning patterns, identify areas for improvement, and stay motivated on your learning journey.

## Dashboard Analytics

### Learning Overview

Your dashboard provides a high-level view of your learning activity:

<CardGroup cols={2}>
  <Card title="Study Streak" icon="fire">
    Track consecutive days of study activity
  </Card>

  <Card title="Cards Studied" icon="stack">
    Total number of cards reviewed today
  </Card>

  <Card title="Accuracy Rate" icon="target">
    Percentage of cards answered correctly
  </Card>

  <Card title="Time Invested" icon="clock">
    Total study time across all sessions
  </Card>
</CardGroup>

### Weekly Progress

Monitor your weekly learning patterns:

```mermaid theme={null}
graph LR
    A[Monday] --> B[Tuesday]
    B --> C[Wednesday]
    C --> D[Thursday]
    D --> E[Friday]
    E --> F[Saturday]
    F --> G[Sunday]
    
    style A fill:#10b981
    style B fill:#10b981
    style C fill:#ef4444
    style D fill:#10b981
    style E fill:#10b981
    style F fill:#6b7280
    style G fill:#6b7280
```

<Note>
  Green indicates completed study sessions, red shows missed days, and gray represents future days.
</Note>

## Detailed Metrics

### Performance Analytics

<Tabs>
  <Tab title="Retention Rates">
    Track how well you remember information over time:

    * **Immediate recall**: Performance within 24 hours
    * **Short-term retention**: 1-7 days after learning
    * **Long-term retention**: 1+ weeks after learning
    * **Forgetting curve**: How quickly you forget without review
  </Tab>

  <Tab title="Response Times">
    Analyze how quickly you can recall information:

    * **Average response time**: Overall speed of recall
    * **Time by difficulty**: How difficulty affects response time
    * **Improvement trends**: Whether you're getting faster
    * **Optimal intervals**: When you perform best
  </Tab>

  <Tab title="Difficulty Progression">
    See how card difficulty changes over time:

    * **Ease factor trends**: How card difficulty evolves
    * **Mastery progression**: Cards moving to mastered status
    * **Trouble cards**: Cards consistently rated as difficult
    * **Success rates by ease**: Performance across difficulty levels
  </Tab>
</Tabs>

### Study Session Analysis

Every study session generates detailed metrics:

<AccordionGroup>
  <Accordion title="Session Summary">
    * Duration of study session
    * Number of cards reviewed
    * New cards introduced
    * Overall accuracy rate
    * Cards marked as difficult
  </Accordion>

  <Accordion title="Card-Level Performance">
    * Individual card response times
    * Quality ratings given
    * Interval changes
    * Cards that need more review
  </Accordion>

  <Accordion title="Learning Velocity">
    * Rate of new card acquisition
    * Speed of moving cards to review
    * Time to achieve mastery
    * Projected completion dates
  </Accordion>
</AccordionGroup>

## Visual Progress Reports

### Heatmap Visualization

Track your study consistency with a GitHub-style activity heatmap:

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/shubham-0fd31468/images/study-heatmap.svg" alt="Study Activity Heatmap" />
</Frame>

**Color intensity indicates:**

* Light green: 1-10 cards studied
* Medium green: 11-25 cards studied
* Dark green: 25+ cards studied
* Gray: No study activity

### Learning Curves

Visualize your improvement over time:

```mermaid theme={null}
xychart-beta
    title "Learning Progress Over Time"
    x-axis [Week 1, Week 2, Week 3, Week 4, Week 5, Week 6]
    y-axis "Accuracy %" 0 --> 100
    line [45, 52, 61, 68, 74, 81]
```

### Deck-Specific Analytics

<CardGroup cols={3}>
  <Card title="Spanish Vocabulary" icon="language">
    * 156 cards mastered
    * 78% accuracy rate
    * 12-day streak
  </Card>

  <Card title="Data Structures" icon="code">
    * 89 cards mastered
    * 92% accuracy rate
    * 8-day streak
  </Card>

  <Card title="Medical Terms" icon="stethoscope">
    * 203 cards mastered
    * 85% accuracy rate
    * 15-day streak
  </Card>
</CardGroup>

## Goal Setting and Milestones

### Daily Goals

Set and track daily learning objectives:

<Steps>
  <Step title="Set Daily Target">
    Choose number of cards to review each day
  </Step>

  <Step title="Track Progress">
    Monitor completion throughout the day
  </Step>

  <Step title="Celebrate Achievement">
    Earn badges and streaks for consistency
  </Step>
</Steps>

### Long-Term Milestones

<AccordionGroup>
  <Accordion title="Mastery Milestones">
    * **Bronze**: 50 cards with 1+ month intervals
    * **Silver**: 100 cards with 3+ month intervals
    * **Gold**: 250 cards with 6+ month intervals
    * **Platinum**: 500 cards with 1+ year intervals
  </Accordion>

  <Accordion title="Study Streaks">
    * **Consistent**: 7 days in a row
    * **Dedicated**: 30 days in a row
    * **Committed**: 100 days in a row
    * **Master**: 365 days in a row
  </Accordion>

  <Accordion title="Subject Mastery">
    * **Beginner**: 25% of deck mastered
    * **Intermediate**: 50% of deck mastered
    * **Advanced**: 75% of deck mastered
    * **Expert**: 90% of deck mastered
  </Accordion>
</AccordionGroup>

## Insights and Recommendations

### Personalized Insights

FlashMind analyzes your learning patterns to provide actionable insights:

<Tip>
  **Study Time Optimization**: You perform 23% better during morning sessions (8-10 AM). Consider scheduling important reviews during this time.
</Tip>

<Warning>
  **Attention Needed**: Your retention rate for "Medical Terminology" deck has dropped to 68%. Consider reducing daily new cards and focusing on review.
</Warning>

### Smart Recommendations

Based on your data, FlashMind suggests:

1. **Optimal study times**: When you're most effective
2. **Session length**: Ideal duration for your attention span
3. **Break intervals**: When to take breaks during long sessions
4. **Difficulty adjustments**: When to increase or decrease challenge
5. **Review priorities**: Which decks need immediate attention

### Learning Efficiency

Track how efficiently you're learning:

<CardGroup cols={2}>
  <Card title="Learning Rate" icon="trending-up">
    New concepts mastered per hour of study
  </Card>

  <Card title="Retention Efficiency" icon="brain">
    Percentage of reviewed cards still remembered
  </Card>

  <Card title="Time Investment" icon="hourglass">
    Hours needed to achieve mastery level
  </Card>

  <Card title="Difficulty Progression" icon="chart-bar">
    Rate at which cards become easier
  </Card>
</CardGroup>

## Comparative Analytics

### Historical Comparison

Compare your current performance with previous periods:

```typescript theme={null}
interface PerformanceComparison {
  currentWeek: {
    cardsStudied: 156;
    accuracy: 78%;
    timeSpent: '4h 23m';
  };
  previousWeek: {
    cardsStudied: 142;
    accuracy: 74%;
    timeSpent: '4h 45m';
  };
  improvement: {
    cardsStudied: '+14 (+9.9%)';
    accuracy: '+4% (+5.4%)';
    timeSpent: '-22m (-8.2%)';
  };
}
```

### Peer Benchmarking

See how you compare to other learners (anonymized):

* **Top 10%**: You're performing better than 90% of users
* **Average study time**: You study 15% more than average
* **Retention rate**: Your retention is 12% above average
* **Consistency**: You're in the top 25% for study streaks

## Export and Sharing

### Data Export

Export your progress data for external analysis:

<CodeGroup>
  ```csv Progress Export theme={null}
  Date,Cards Studied,Accuracy,Session Duration,New Cards
  2024-01-15,23,78%,25m,5
  2024-01-16,31,82%,32m,7
  2024-01-17,19,75%,22m,3
  ```

  ```json Detailed Analytics theme={null}
  {
    "user_id": "user_123",
    "period": "2024-01-01_to_2024-01-31",
    "summary": {
      "total_cards_studied": 687,
      "average_accuracy": 79.2,
      "total_study_time": "28h 45m",
      "streak_days": 23
    },
    "daily_breakdown": [...]
  }
  ```
</CodeGroup>

### Progress Sharing

Share your achievements with friends or mentors:

* **Study streak badges**: Show off your consistency
* **Mastery certificates**: Celebrate deck completion
* **Learning reports**: Professional summaries for courses
* **Social media integration**: Share milestones automatically

## Motivation Features

### Achievement System

Unlock achievements as you progress:

<CardGroup cols={3}>
  <Card title="First Steps" icon="baby">
    Complete your first study session
  </Card>

  <Card title="Week Warrior" icon="sword">
    Study for 7 consecutive days
  </Card>

  <Card title="Speed Demon" icon="bolt">
    Answer 50 cards in under 10 minutes
  </Card>

  <Card title="Master Mind" icon="crown">
    Achieve 95% accuracy for a full week
  </Card>

  <Card title="Night Owl" icon="moon">
    Complete 10 late-night study sessions
  </Card>

  <Card title="Perfectionist" icon="star">
    Get 25 perfect sessions in a row
  </Card>
</CardGroup>

### Progress Celebrations

Celebrate your milestones with:

* **Confetti animations** for streak milestones
* **Progress bar celebrations** when completing goals
* **Personalized messages** for significant achievements
* **Shareable badges** for social recognition

<Note>
  Regular progress tracking not only helps you improve but also provides the motivation needed to maintain consistent study habits. Use these insights to optimize your learning strategy!
</Note>

Ready to start tracking your progress? [Begin studying](/quickstart) and watch your learning analytics come to life!
