| Round | Winner | Results | {% for trajectory in trajectories_by_round.get(1, []) %}{{ trajectory.player_id }} | {% endfor %}Actions | |
|---|---|---|---|---|---|
| {{ round_data.round_num }} |
{% if round_data.results and round_data.results.winner %}
{{ round_data.results.winner }}
{% if round_data.results.winner_percentage %}
{{ round_data.results.winner_percentage }}%
{% endif %}
{% if round_data.results.p_value is not none %}
p={{ "%.2f"|format(round_data.results.p_value) }}
{% endif %}
{% else %}
-
{% endif %}
|
{% if round_data.results and round_data.results.sorted_scores %}
{% for player, score in round_data.results.sorted_scores %}
{{ player }}: {{ score }}
{% endfor %}
{% else %}
-
{% endif %}
|
{% if trajectories_by_round.get(round_data.round_num) %}
{% for trajectory in trajectories_by_round[round_data.round_num] %}
{{ trajectory.api_calls }}/${{ "%.2f"|format(trajectory.cost) }}
{% if trajectory.exit_status %}
{{ trajectory.exit_status }}
{% else %}
-
{% endif %}
|
{% endfor %}
{% else %}
{% for trajectory in trajectories_by_round.get(1, []) %}
- | {% endfor %} {% endif %}