Skip to content

Commit d386103

Browse files
committed
attempt
1 parent 0010f14 commit d386103

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/tutorials/new_to_game_theory_and_or_python/summarising_tournaments.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ that summarises the results of the tournament::
1919
>>> import pprint
2020
>>> pprint.pprint(summary)
2121
[Player(Rank=0, Name='Defector', Median_score=2.6..., Cooperation_rating=0.0, Wins=3.0, Initial_C_rate=0.0, Original_index=1, CC_rate=...),
22-
Player(Rank=1, Name='Tit For Tat', Median_score=2.3..., Cooperation_rating=0...., Wins=0.0, Initial_C_rate=1.0, Original_index=2, CC_rate=...),
23-
Player(Rank=2, Name='Grudger', Median_score=2.3..., Cooperation_rating=0...., Wins=0.0, Initial_C_rate=1.0, Original_index=3, CC_rate=...),
22+
Player(Rank=1, Name='Tit For Tat', Median_score=2.3..., Cooperation_rating=0..., Wins=0.0, Initial_C_rate=1.0, Original_index=2, CC_rate=...),
23+
Player(Rank=2, Name='Grudger', Median_score=2.3..., Cooperation_rating=0..., Wins=0.0, Initial_C_rate=1.0, Original_index=3, CC_rate=...),
2424
Player(Rank=3, Name='Cooperator', Median_score=2.0..., Cooperation_rating=1.0, Wins=0.0, Initial_C_rate=1.0, Original_index=0, CC_rate=...)]
2525

2626
It is also possible to write this data directly to a csv file using the
@@ -33,11 +33,11 @@ It is also possible to write this data directly to a csv file using the
3333
... for row in csvreader:
3434
... print(row)
3535
['Rank', 'Name', 'Median_score', 'Cooperation_rating', 'Wins', 'Initial_C_rate', 'Original_index', 'CC_rate', 'CD_rate', 'DC_rate', 'DD_rate', 'CC_to_C_rate', 'CD_to_C_rate', 'DC_to_C_rate', 'DD_to_C_rate']
36-
['0', 'Defector', '2.6', '0.0', '3.0', '0.0', '1', '0.0', '0.0', '0.4000000000000001', '0.6', '0', '0', '0', '0']
37-
['1', 'Tit For Tat', '2.3000000000000003', '0.7', '0.0', '1.0', '2', '0.6666666666666666', '0.03333333333333333', '0.0', '0.3', '1.0', '0', '0', '0']
38-
['2', 'Grudger', '2.3000000000000003', '0.7', '0.0', '1.0', '3', '0.6666666666666666', '0.03333333333333333', '0.0', '0.3', '1.0', '0', '0', '0']
39-
['3', 'Cooperator', '2.0', '1.0', '0.0', '1.0', '0', '0.6666666666666666', '0.3333333333333333', '0.0', '0.0', '1.0', '1.0', '0', '0']
40-
36+
['0', 'Defector', ...]
37+
['1', 'Tit For Tat', ...]
38+
['2', 'Grudger', ...]
39+
['3', 'Cooperator', ...]
4140

41+
4242
The result set class computes a large number of detailed outcomes read about
4343
those in :ref:`tournament-results`.

0 commit comments

Comments
 (0)