This notebook shows how to build a basic tournament and view the results.
import axelrod as axl
import random
%matplotlib inline
strategies = [s() for s in axl.basic_strategies]
strategies.append(axl.Random())
tournament = axl.Tournament(strategies)
results = tournament.play()
results.ranked_names
['Defector', 'Bully', 'Tit For Tat', 'Random: 0.5', 'Alternator', 'Suspicious Tit For Tat', 'Anti Tit For Tat', 'Win-Stay Lose-Shift', 'Cooperator']
Visualising the results:
plot = axl.Plot(results)
plot.boxplot();
There are many more strategies as well as outputs that the library can create: take a look at the documentation for further details.