Total Players

{{ stats.total_players }}

Highest Score

{{ stats.highest_score }}

{{ stats.highest_player_name }} ({{ stats.highest_player_team }})

Average Score

{{ stats.avg_score|round(1) }}

Top Team

{{ stats.highest_team_score }}

{{ stats.highest_team }} ({{ stats.highest_team_name }})

Score Visualizations

Team Scores

Player Score Distribution

Top {{ top_players|length }} Players by Scrabble Score

{% for player in top_players %} {% endfor %}
Rank Player Name Team Score
{{ loop.index }} {{ player.first_name }} {{ player.last_name }} {{ player.team }} {{ player.score }}

Team Standings by Total Scrabble Score

{% for team in team_standings %} {% endfor %}
Rank Team Division Conference Total Score Avg Score Players
{{ loop.index }} {{ team.name }} {{ team.division }} {{ team.conference }} {{ team.total_score }} {{ team.avg_score|round(1) }} {{ team.player_count }}

Division Standings

{% for division, teams in division_standings.items() %}

{{ division }}

    {% for team in teams[:5] %}
  1. {{ team.name }} ({{ team.total_score }})
  2. {% endfor %}
{% endfor %}