{% extends "base.html" %} {% block content %}
各地图下遇到对手的胜率、ELO、Rating、K/D
| Map | Matches | Win Rate | Avg Rating | Avg K/D | Avg Elo |
|---|---|---|---|---|---|
| {{ m.map_name }} | {{ m.matches }} | {% set wr = (m.win_rate or 0) * 100 %} {{ "%.1f"|format(wr) }}% | {{ "%.2f"|format(m.avg_rating or 0) }} | {{ "%.2f"|format(m.avg_kd or 0) }} | {% if m.avg_elo %}{{ "%.0f"|format(m.avg_elo) }}{% else %}—{% endif %} |
| 暂无地图统计数据 | |||||
统计各地图出现 rating > 1.5 对手的比赛次数
| Map | Encounters | Frequency |
|---|---|---|
| {{ m.map_name }} | {{ m.shark_matches or 0 }} | {% set freq = ( (m.shark_matches or 0) / (m.matches or 1) ) * 100 %} {{ "%.1f"|format(freq) }}% |
| 暂无炸鱼哥统计数据 | ||
Analyze performance against specific players encountered in matches.
| Opponent | Matches vs Us | Their Win Rate | Their Rating | Their K/D | Avg Match Elo | View |
|---|---|---|---|---|---|---|
|
{% if op.avatar_url %}
{{ op.username[:2]|upper if op.username else '??' }}
{% endif %}
{{ op.username }}
{{ op.steam_id_64 }}
|
{{ op.matches }} | {% set wr = op.win_rate * 100 %} {{ "%.1f"|format(wr) }}% | {{ "%.2f"|format(op.avg_rating or 0) }} | {{ "%.2f"|format(op.avg_kd or 0) }} | {% if op.avg_match_elo %} {{ "%.0f"|format(op.avg_match_elo) }} {% else %}—{% endif %} | Analyze → |
| No opponents found. | ||||||